diff options
| -rwxr-xr-x | indra/newview/llpreviewtexture.cpp | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llpreviewtexture.cpp b/indra/newview/llpreviewtexture.cpp index c8cf0faa15..2a2c51be40 100755 --- a/indra/newview/llpreviewtexture.cpp +++ b/indra/newview/llpreviewtexture.cpp @@ -89,8 +89,12 @@ LLPreviewTexture::~LLPreviewTexture()  	{  		getWindow()->decBusyCount();  	} -	mImage->setBoostLevel(mImageOldBoostLevel); -	mImage = NULL; + +	if (mImage.notNull()) +	{ +		mImage->setBoostLevel(mImageOldBoostLevel); +		mImage = NULL; +	}  }  // virtual  | 
