Skip to content
Snippets Groups Projects
Commit 1728556b authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

MAINT-4286 FIXED Dragging outfits folder onto cloud avatar in Bear crashes the viewer

parent 21aca031
No related branches found
No related tags found
No related merge requests found
...@@ -380,8 +380,11 @@ void AISUpdate::parseMeta(const LLSD& update) ...@@ -380,8 +380,11 @@ void AISUpdate::parseMeta(const LLSD& update)
it != cat_ids.end(); ++it) it != cat_ids.end(); ++it)
{ {
LLViewerInventoryCategory *cat = gInventory.getCategory(*it); LLViewerInventoryCategory *cat = gInventory.getCategory(*it);
mCatDescendentDeltas[cat->getParentUUID()]--; if(cat)
mObjectsDeletedIds.insert(*it); {
mCatDescendentDeltas[cat->getParentUUID()]--;
mObjectsDeletedIds.insert(*it);
}
} }
// parse _categories_items_removed -> mObjectsDeletedIds // parse _categories_items_removed -> mObjectsDeletedIds
...@@ -392,8 +395,11 @@ void AISUpdate::parseMeta(const LLSD& update) ...@@ -392,8 +395,11 @@ void AISUpdate::parseMeta(const LLSD& update)
it != item_ids.end(); ++it) it != item_ids.end(); ++it)
{ {
LLViewerInventoryItem *item = gInventory.getItem(*it); LLViewerInventoryItem *item = gInventory.getItem(*it);
mCatDescendentDeltas[item->getParentUUID()]--; if(item)
mObjectsDeletedIds.insert(*it); {
mCatDescendentDeltas[item->getParentUUID()]--;
mObjectsDeletedIds.insert(*it);
}
} }
// parse _broken_links_removed -> mObjectsDeletedIds // parse _broken_links_removed -> mObjectsDeletedIds
...@@ -403,8 +409,11 @@ void AISUpdate::parseMeta(const LLSD& update) ...@@ -403,8 +409,11 @@ void AISUpdate::parseMeta(const LLSD& update)
it != broken_link_ids.end(); ++it) it != broken_link_ids.end(); ++it)
{ {
LLViewerInventoryItem *item = gInventory.getItem(*it); LLViewerInventoryItem *item = gInventory.getItem(*it);
mCatDescendentDeltas[item->getParentUUID()]--; if(item)
mObjectsDeletedIds.insert(*it); {
mCatDescendentDeltas[item->getParentUUID()]--;
mObjectsDeletedIds.insert(*it);
}
} }
// parse _created_items // parse _created_items
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment