diff options
| -rw-r--r-- | indra/llui/llscrolllistctrl.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index 74a9641836..1d9564d107 100644 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -1479,7 +1479,11 @@ const std::string LLScrollListCtrl::getSelectedItemLabel(S32 column) const      item = getFirstSelected();      if (item)      { -        return item->getColumn(column)->getValue().asString(); +        auto col = item->getColumn(column); +        if(col) +        { +            return col->getValue().asString(); +        }      }      return LLStringUtil::null; | 
