SL-20090 BugSplat Crash: LLViewerFetchedTexture::updateFetch(2099)

master
Alexander Gavriliuk 2023-08-07 18:44:04 +02:00
parent 52d973e955
commit 0b02bf5d26
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}