diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-08-07 18:44:04 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-08-07 19:36:13 +0200 |
commit | 0d411e2e2dc07078b3e862649916b58a81ab5b82 (patch) | |
tree | d4c19492c2c0f6a24f79b2ae82c495bd20a5b21a | |
parent | 177d7124904d84ce38102ba3255c5dccc6adb35b (diff) |
SL-20090 BugSplat Crash: LLViewerFetchedTexture::updateFetch(2099)
-rw-r--r-- | indra/newview/llviewertexture.cpp | 3 |
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; } |