diff options
| -rw-r--r-- | indra/newview/llinventorybridge.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llinventorymodel.cpp | 2 | 
2 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 90e48d22ec..c5903eb5ca 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2127,6 +2127,7 @@ void LLFolderBridge::openItem()  	lldebugs << "LLFolderBridge::openItem()" << llendl;
  	LLInventoryModel* model = getInventoryModel();
  	if(!model) return;
 +	if(mUUID.isNull()) return;
  	bool fetching_inventory = model->fetchDescendentsOf(mUUID);
  	// Only change folder type if we have the folder contents.
  	if (!fetching_inventory)
 diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index baf34b42ff..c8b9841e5d 100644 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -1267,6 +1267,8 @@ void LLInventoryModel::fetchInventoryResponder::error(U32 status, const std::str  bool LLInventoryModel::fetchDescendentsOf(const LLUUID& folder_id)  { +	if(folder_id.isNull()) return false; +	  	LLViewerInventoryCategory* cat = getCategory(folder_id);  	if(!cat)  	{  | 
