diff options
author | Leslie Linden <leslie@lindenlab.com> | 2011-12-07 15:03:45 -0800 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2011-12-07 15:03:45 -0800 |
commit | e860925818fe9376fa9abb0520680dba986ab42e (patch) | |
tree | b62ddbc1ea9ad73bfd7eb2e0eda365f42755d5df /indra/llui/llview.cpp | |
parent | 83cc0becf859275a810da4ce0ccb0d7f8147d614 (diff) |
Crash workaround when opening toats windows after a long session.
Diffstat (limited to 'indra/llui/llview.cpp')
-rw-r--r-- | indra/llui/llview.cpp | 5 |
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()) { |