diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 481b221870..73005d6903 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2982,7 +2982,10 @@ BOOL LLFolderBridge::dragCategoryIntoFolder(LLInventoryCategory* inv_cat, move_it != move_inv->mMoveList.end(); ++move_it) { - cb->fire(move_it->second); + if (cb) + { + cb->fire(move_it->second); + } } }; accept = move_inv_category_world_to_agent(cat_id, mUUID, drop, callback, NULL, filter); |