summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-08-07 18:44:04 +0200
committerAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-09-11 18:21:19 +0200
commit0b02bf5d262fe9a6de968686420c4d525ac04077 (patch)
treecad9a291ac644725cecdc7ecf77c1fee841b3bc9 /indra
parent52d973e95567efcb145ed0de1f4b6f0e19663776 (diff)
SL-20090 BugSplat Crash: LLViewerFetchedTexture::updateFetch(2099)
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llviewertexture.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp
index cb58588848..9fc092d4b9 100644
--- a/indra/newview/llviewertexture.cpp
+++ b/indra/newview/llviewertexture.cpp
@@ -2096,7 +2096,8 @@ bool LLViewerFetchedTexture::updateFetch()
}
}
- llassert_always(mRawImage.notNull() || (!mNeedsCreateTexture && !mIsRawImageValid));
+ llassert_always(mRawImage.notNull() || !mIsRawImageValid);
+ llassert_always(mRawImage.notNull() || !mNeedsCreateTexture);
return mIsFetching ? true : false;
}