diff options
| -rw-r--r-- | indra/newview/llpaneloutfitedit.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/newview/llpaneloutfitedit.cpp b/indra/newview/llpaneloutfitedit.cpp index ba22adc01c..2b25c544e3 100644 --- a/indra/newview/llpaneloutfitedit.cpp +++ b/indra/newview/llpaneloutfitedit.cpp @@ -413,7 +413,11 @@ void LLPanelOutfitEdit::onLookItemSelectionChange(void)  {	  	S32 left_offset = -4;  	S32 top_offset = -10; -	LLRect rect = mLookContents->getLastSelectedItem()->getRect(); +	LLScrollListItem* item = mLookContents->getLastSelectedItem(); +	if (!item) +		return; + +	LLRect rect = item->getRect();  	LLRect btn_rect(  					left_offset + rect.mRight - 50,  					top_offset  + rect.mTop, | 
