diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-07-05 12:07:00 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-07-05 12:07:00 +0100 |
commit | 49a3fc9cc3b47a751d99b31f87458680bd966936 (patch) | |
tree | 532a9e6433522eda30c19be27e355ca7508c09b6 /indra/newview | |
parent | 297bab71ab6fcbdabd3f1c0ac0e2fa403a3ed319 (diff) |
CID-494
Checker: FORWARD_NULL
Function: LLPanelOutfitEdit::filterWearablesBySelectedItem()
File: /indra/newview/llpaneloutfitedit.cpp
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llpaneloutfitedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpaneloutfitedit.cpp b/indra/newview/llpaneloutfitedit.cpp index a7e901cbfa..053c2d9498 100644 --- a/indra/newview/llpaneloutfitedit.cpp +++ b/indra/newview/llpaneloutfitedit.cpp @@ -773,7 +773,7 @@ void LLPanelOutfitEdit::filterWearablesBySelectedItem(void) return; } - if (one_selected && !is_dummy_item) + if (item && one_selected && !is_dummy_item) { if (item->isWearableType()) { |