summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeslie Linden <leslie@lindenlab.com>2011-12-07 15:03:45 -0800
committerLeslie Linden <leslie@lindenlab.com>2011-12-07 15:03:45 -0800
commite860925818fe9376fa9abb0520680dba986ab42e (patch)
treeb62ddbc1ea9ad73bfd7eb2e0eda365f42755d5df
parent83cc0becf859275a810da4ce0ccb0d7f8147d614 (diff)
Crash workaround when opening toats windows after a long session.
-rw-r--r--indra/llui/llview.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp
index 486babb0ab..d2966fbe98 100644
--- a/indra/llui/llview.cpp
+++ b/indra/llui/llview.cpp
@@ -1090,6 +1090,11 @@ void LLView::drawChildren()
{
child_list_reverse_iter_t child = child_iter++;
LLView *viewp = *child;
+
+ if (viewp == NULL)
+ {
+ continue;
+ }
if (viewp->getVisible() && viewp->getRect().isValid())
{