Checker: NULL_RETURNS
File: /indra/llui/llscrolllistctrl.cpp
master
Tofu Linden 2010-02-13 13:45:28 +00:00
parent 0cf46fe136
commit 51e2ee7b3a
1 changed files with 7 additions and 2 deletions

View File

@ -283,8 +283,13 @@ void LLFloaterTopObjects::updateSelectionInfo()
std::string object_id_string = object_id.asString();
childSetValue("id_editor", LLSD(object_id_string));
childSetValue("object_name_editor", list->getFirstSelected()->getColumn(1)->getValue().asString());
childSetValue("owner_name_editor", list->getFirstSelected()->getColumn(2)->getValue().asString());
LLScrollListItem* sli = list->getFirstSelected();
llassert(sli);
if (sli)
{
childSetValue("object_name_editor", sli->getColumn(1)->getValue().asString());
childSetValue("owner_name_editor", sli->getColumn(2)->getValue().asString());
}
}
// static