diff --git a/doc/contributions.txt b/doc/contributions.txt index b118439f2600addb86b4742b4afe284b20d9565e..f1111a2210c104283a1d08a4dd7f80c1512f1c9e 100755 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -195,6 +195,7 @@ Ansariel Hiller MAINT-6432 MAINT-6513 MAINT-6514 + MAINT-6552 Aralara Rajal Arare Chantilly CHUIBUG-191 diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index ed719ae41827b8127bc55ec813f1c541eb6a4164..ac997d7525d78395152709075952bf06395c243a 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1200,7 +1200,7 @@ void LLViewerFetchedTexture::loadFromFastCache() { S32 expected_width = mKnownDrawWidth > 0 ? mKnownDrawWidth : DEFAULT_ICON_DIMENTIONS; S32 expected_height = mKnownDrawHeight > 0 ? mKnownDrawHeight : DEFAULT_ICON_DIMENTIONS; - if (mRawImage->getWidth() > expected_width || mRawImage->getHeight() > expected_height) + if (mRawImage && (mRawImage->getWidth() > expected_width || mRawImage->getHeight() > expected_height)) { // scale oversized icon, no need to give more work to gl mRawImage->scale(expected_width, expected_height);