diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llinventorybridge.cpp | 11 | 
1 files changed, 9 insertions, 2 deletions
| diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 3a630650c5..1fd069f195 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -4916,8 +4916,12 @@ void LLWearableBridge::onRemoveFromAvatarArrived(LLWearable* wearable,  	}  	// Find and remove this item from the COF. +	// FIXME 2.1 - call removeCOFItemLinks in llappearancemgr instead.  	LLInventoryModel::item_array_t items = gInventory.collectLinkedItems(item_id, LLAppearanceManager::instance().getCOF()); -	llassert(items.size() == 1); // Should always have one and only one item linked to this in the COF. +	if (items.size() != 1) +	{ +		llwarns << "Found " << items.size() << " COF links to " << item_id.asString() << ", expected 1" << llendl; +	}  	for (LLInventoryModel::item_array_t::const_iterator iter = items.begin();  		 iter != items.end();  		 ++iter) @@ -4953,7 +4957,10 @@ void LLWearableBridge::removeAllClothesFromAvatar()  		// Find and remove this item from the COF.  		LLInventoryModel::item_array_t items = gInventory.collectLinkedItems(  			item_id, LLAppearanceManager::instance().getCOF()); -		llassert(items.size() == 1); // Should always have one and only one item linked to this in the COF. +		if (items.size() != 1) +		{ +			llwarns << "Found " << items.size() << " COF links to " << item_id.asString() << ", expected 1" << llendl; +		}  		for (LLInventoryModel::item_array_t::const_iterator iter = items.begin();  			 iter != items.end();  			 ++iter) | 
