From f16c7b2eee7d0b203cf1b684ed97cb45a838d8c5 Mon Sep 17 00:00:00 2001 From: Beq Date: Wed, 25 Sep 2024 00:23:53 +0100 Subject: [PATCH] [FIRE-34565] Bugsplat crash Added null check to prevent crash Is this a whack-a-mole bug that will pop up later? --- indra/newview/llvotree.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/llvotree.cpp b/indra/newview/llvotree.cpp index 710509afbb..6746449a4b 100644 --- a/indra/newview/llvotree.cpp +++ b/indra/newview/llvotree.cpp @@ -1180,6 +1180,7 @@ void LLVOTree::updateSpatialExtents(LLVector4a& newMin, LLVector4a& newMax) mDrawable->setPositionGroup(pos); LLFace* facep = mDrawable->getFace(0); + if (!facep) return; // FIRE-34565 Repeatable Bugsplat crash while driving on mainland. facep->mExtents[0] = newMin; facep->mExtents[1] = newMax; }