summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-08-07 18:44:04 +0200
committerGuru <alexandrgproductengine@lindenlab.com>2023-08-07 19:36:13 +0200
commit0d411e2e2dc07078b3e862649916b58a81ab5b82 (patch)
treed4c19492c2c0f6a24f79b2ae82c495bd20a5b21a /indra/newview
parent177d7124904d84ce38102ba3255c5dccc6adb35b (diff)
SL-20090 BugSplat Crash: LLViewerFetchedTexture::updateFetch(2099)
Diffstat (limited to 'indra/newview')
-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 c458c75a40..97ff5f58e4 100644
--- a/indra/newview/llviewertexture.cpp
+++ b/indra/newview/llviewertexture.cpp
@@ -2365,7 +2365,8 @@ bool LLViewerFetchedTexture::updateFetch()
}
}
- llassert_always(mRawImage.notNull() || (!mNeedsCreateTexture && !mIsRawImageValid));
+ llassert_always(mRawImage.notNull() || !mIsRawImageValid);
+ llassert_always(mRawImage.notNull() || !mNeedsCreateTexture);
return mIsFetching ? true : false;
}