From c7e1d9f5d985bce651de23fb0a6c0a62bf843324 Mon Sep 17 00:00:00 2001 From: Maxim Nikolenko Date: Thu, 22 Jan 2026 19:45:05 +0200 Subject: #5157 fix crash in isHUDGroup --- indra/newview/pipeline.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'indra/newview/pipeline.cpp') diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index d1ea8c2ee5..c9d53bbcbc 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2734,6 +2734,10 @@ void LLPipeline::clearRebuildGroups() { LLSpatialGroup* group = *iter; + if (!group || group->isDead()) + { + continue; + } // If the group contains HUD objects, save the group if (group->isHUDGroup()) { -- cgit v1.3