diff options
| author | leyla <leyla@leyla.com> | 2010-06-02 11:24:40 -0700 |
|---|---|---|
| committer | leyla <leyla@leyla.com> | 2010-06-02 11:24:40 -0700 |
| commit | a282ffedf444462b71f5abc7aeac47768e7344e7 (patch) | |
| tree | 6634c6131809a23c3af36645ab220e97dd63f18e /indra/newview/llinventoryitemslist.cpp | |
| parent | 507410b63d2e8f5193443a8d5451ccf614ac85e7 (diff) | |
| parent | 28d23e8c85ba6073cffbd3597342c43f4f9c7971 (diff) | |
Merge
Diffstat (limited to 'indra/newview/llinventoryitemslist.cpp')
| -rw-r--r-- | indra/newview/llinventoryitemslist.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/indra/newview/llinventoryitemslist.cpp b/indra/newview/llinventoryitemslist.cpp index 1c3eb547bb..750cdfb678 100644 --- a/indra/newview/llinventoryitemslist.cpp +++ b/indra/newview/llinventoryitemslist.cpp @@ -388,7 +388,7 @@ void LLInventoryItemsList::refresh() computeDifference(getIDs(), added_items, removed_items); bool add_limit_exceeded = false; - unsigned nadded = 0; + unsigned int nadded = 0; uuid_vec_t::const_iterator it = added_items.begin(); for( ; added_items.end() != it; ++it) @@ -400,8 +400,12 @@ void LLInventoryItemsList::refresh() } LLViewerInventoryItem* item = gInventory.getItem(*it); // Do not rearrange items on each adding, let's do that on filter call - addNewItem(item, false); - ++nadded; + llassert(item); + if (item) + { + addNewItem(item, false); + ++nadded; + } } it = removed_items.begin(); |
