diff options
| -rw-r--r-- | indra/newview/llfloaterimsessiontab.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/llfloaterimsessiontab.cpp b/indra/newview/llfloaterimsessiontab.cpp index a21ee07d47..0057ed3231 100644 --- a/indra/newview/llfloaterimsessiontab.cpp +++ b/indra/newview/llfloaterimsessiontab.cpp @@ -496,8 +496,11 @@ void LLFloaterIMSessionTab::refreshConversation()  	}  	mConversationViewModel.requestSortAll(); -	mConversationsRoot->arrangeAll(); -	mConversationsRoot->update(); +	if(mConversationsRoot != NULL) +	{ +		mConversationsRoot->arrangeAll(); +		mConversationsRoot->update(); +	}  	updateHeaderAndToolbar();  	refresh();  }  | 
