diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-12-11 14:42:02 +0200 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-12-11 14:42:02 +0200 |
commit | 065bbf7d383c36b8026a923a3837d1e7ea075b76 (patch) | |
tree | 2be824c0e58d894b7ffc771a6b1d7853d8c690e4 /indra/llui | |
parent | 321a81e37175ef675c119f0dfd8f60576960f5ce (diff) |
MAINT-3553 Another checking is added to avoid possible crash.
Diffstat (limited to 'indra/llui')
-rwxr-xr-x | indra/llui/llfloater.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index c1f8a077b5..acf38afe32 100755 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -1951,6 +1951,7 @@ void LLFloater::drawShadow(LLPanel* panel) void LLFloater::updateTransparency(LLView* view, ETypeTransparency transparency_type) { + if (!view) return; child_list_t children = *view->getChildList(); child_list_t::iterator it = children.begin(); |