Skip to content

Commit 5bd9c86

Browse files
committed
#746 BugSplat Crash: LLAccordionCtrlTab::showAndFocusHeader(873)
1 parent a2552a5 commit 5bd9c86

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

indra/newview/lloutfitgallery.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,8 +1094,11 @@ bool LLOutfitGalleryItem::openOutfitsContent()
10941094
{
10951095
outfit_list->setSelectedOutfitByUUID(mUUID);
10961096
LLAccordionCtrlTab* tab = accordion->getSelectedTab();
1097-
tab->showAndFocusHeader();
1098-
return true;
1097+
if (tab)
1098+
{
1099+
tab->showAndFocusHeader();
1100+
return true;
1101+
}
10991102
}
11001103
}
11011104
}

0 commit comments

Comments
 (0)