From f9023371ba6b9bae9eef353ca8b42e4619b8ee01 Mon Sep 17 00:00:00 2001
From: AndreyL ProductEngine <alihatskiy@productengine.com>
Date: Wed, 8 Jun 2016 03:49:55 +0300
Subject: [PATCH] MAINT-6461 Added a null check

---
 indra/llui/llview.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp
index 8f7cac1f61f..62c3f401bf9 100644
--- a/indra/llui/llview.cpp
+++ b/indra/llui/llview.cpp
@@ -588,6 +588,11 @@ void LLView::onVisibilityChange ( BOOL new_visibility )
 	BOOL log_visibility_change = LLViewerEventRecorder::instance().getLoggingStatus();
 	BOOST_FOREACH(LLView* viewp, mChildList)
 	{
+		if (!viewp)
+		{
+			continue;
+		}
+
 		// only views that are themselves visible will have their overall visibility affected by their ancestors
 		old_visibility=viewp->getVisible();
 
-- 
GitLab