diff --git a/indra/llcommon/llassettype.cpp b/indra/llcommon/llassettype.cpp
index d2eb6911c64f48d5eef6d775f9ca8aa61cf392c1..215c58497c3e29f3a6cce825414d3b7988ddbcc4 100644
--- a/indra/llcommon/llassettype.cpp
+++ b/indra/llcommon/llassettype.cpp
@@ -92,7 +92,7 @@ LLAssetDictionary::LLAssetDictionary()
 
 	addEntry(LLAssetType::AT_LINK, 				new AssetEntry("LINK",				"link",		"sym link",			false,		false,		true));
 	addEntry(LLAssetType::AT_LINK_FOLDER, 		new AssetEntry("FOLDER_LINK",		"link_f", 	"sym folder link",	false,		false,		true));
-	addEntry(LLAssetType::AT_MESH,              new AssetEntry("MESH",              "mesh",     "mesh",             false,      true,       true));
+	addEntry(LLAssetType::AT_MESH,              new AssetEntry("MESH",              "mesh",     "mesh",             false,      false,      false));
 	addEntry(LLAssetType::AT_WIDGET,            new AssetEntry("WIDGET",            "widget",   "widget",           false,      false,      false));
 	addEntry(LLAssetType::AT_PERSON,            new AssetEntry("PERSON",            "person",   "person",           false,      false,      false));
 	addEntry(LLAssetType::AT_SETTINGS,          new AssetEntry("SETTINGS",          "settings", "settings blob",    true,       true,       true));
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index 41635c9efd5a6eda80fbdee49a2f5eb6ebbdfa9b..4a5a62ac0f5e7121cb5d7d2facddb5ac1f85f5e5 100644
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -4323,7 +4323,7 @@ void LLInventoryModel::removeCategory(const LLUUID& category_id)
 		}
 		else
 		{
-			const LLUUID& trash_id = findCategoryUUIDForType(LLFolderType::FT_TRASH);
+			const LLUUID trash_id = findCategoryUUIDForType(LLFolderType::FT_TRASH);
 			if (trash_id.notNull())
 			{
 				changeCategoryParent(cat, trash_id, TRUE);