diff options
| -rw-r--r-- | indra/newview/llagentwearables.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index e70511ce6e..6acbc16018 100644 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -511,7 +511,11 @@ void LLAgentWearables::saveWearableAs(const LLWearableType::EType type,  void LLAgentWearables::revertWearable(const LLWearableType::EType type, const U32 index)  {  	LLWearable* wearable = getWearable(type, index); -	wearable->revertValues(); +	llassert(wearable); +	if (wearable) +	{ +		wearable->revertValues(); +	}  	gAgent.sendAgentSetAppearance();  } | 
