summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorAndreyL ProductEngine <andreylproductengine@lindenlab.com>2015-07-28 09:01:20 +0300
committerAndreyL ProductEngine <andreylproductengine@lindenlab.com>2015-07-28 09:01:20 +0300
commitf5d22358d29905c2adbe0af1c8c453dd0a80b4e2 (patch)
tree69a9463a73d9505196ab7f3e32c6b0266582a026 /indra/llui
parentc828382db3e5d689194295d6e4351715bca02aca (diff)
MAINT-5432 MAINT-5440 FIXED Crash
in LLUUID::operator==(LLUUID const &) and LLFolderView::removeSelectedItems()
Diffstat (limited to 'indra/llui')
-rwxr-xr-xindra/llui/llfolderview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfolderview.cpp b/indra/llui/llfolderview.cpp
index 43ebb5eda2..3282c5f726 100755
--- a/indra/llui/llfolderview.cpp
+++ b/indra/llui/llfolderview.cpp
@@ -730,7 +730,7 @@ void LLFolderView::removeSelectedItems()
// structures.
std::vector<LLFolderViewItem*> items;
S32 count = mSelectedItems.size();
- if(count == 0) return;
+ if(count <= 0) return;
LLFolderViewItem* item = NULL;
selected_items_t::iterator item_it;
for (item_it = mSelectedItems.begin(); item_it != mSelectedItems.end(); ++item_it)