From a1e7da8f8f3ad2ef14f041ecc389ecbf9a7d56ad Mon Sep 17 00:00:00 2001 From: Beq Date: Sat, 28 Dec 2024 18:17:17 +0000 Subject: [PATCH] Fix Bgusplat crash during snapshot preview --- indra/newview/llsnapshotlivepreview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llsnapshotlivepreview.cpp b/indra/newview/llsnapshotlivepreview.cpp index fb441afb3f..c9826a9775 100644 --- a/indra/newview/llsnapshotlivepreview.cpp +++ b/indra/newview/llsnapshotlivepreview.cpp @@ -655,7 +655,7 @@ void LLSnapshotLivePreview::generateThumbnailImage(bool force_update) LLViewerTexture* LLSnapshotLivePreview::getBigThumbnailImage() { - if (mThumbnailUpdateLock) //in the process of updating + if (mThumbnailUpdateLock | !mPreviewImage) //in the process of updating (bugsplat avoidance) ensure mPreviewImage is valid { return NULL; }