From f8a43c48150bb804a13c6964620cebdd98345282 Mon Sep 17 00:00:00 2001 From: Mnikolenko ProductEngine Date: Fri, 4 Apr 2014 16:28:36 +0300 Subject: MAINT-3913 FIXED User is not able to upload any type of image(*.png, *.tga,*.bmp,*.jpg) --- indra/llimage/llimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/llimage/llimage.cpp') diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index 55609deb2b..183620f9bc 100755 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -1493,7 +1493,7 @@ void LLImageFormatted::sanityCheck() BOOL LLImageFormatted::copyData(U8 *data, S32 size) { - if ( data && getData() && ((data != getData()) || (size != getDataSize())) ) + if ( data && ((data != getData()) || (size != getDataSize())) ) { deleteData(); allocateData(size); -- cgit v1.2.3