summaryrefslogtreecommitdiff
path: root/indra/llimage
diff options
context:
space:
mode:
authorpavelkproductengine <pavelkproductengine@lindenlab.com>2016-08-25 17:48:27 +0300
committerpavelkproductengine <pavelkproductengine@lindenlab.com>2016-08-25 17:48:27 +0300
commitb22fc7f470398817056abd3c0ada256f8039c708 (patch)
tree3caa0f108595eabd8dbac7a61b03835ee440fa6e /indra/llimage
parentc37b822abff1a77150a334711d8484025e8c1436 (diff)
MAINT-6476 VOB - User can add any size image to an Outfit Gallery outfit folders
Diffstat (limited to 'indra/llimage')
-rw-r--r--indra/llimage/llimagedimensionsinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llimage/llimagedimensionsinfo.cpp b/indra/llimage/llimagedimensionsinfo.cpp
index 5bf3f29b3c..a5e546e977 100644
--- a/indra/llimage/llimagedimensionsinfo.cpp
+++ b/indra/llimage/llimagedimensionsinfo.cpp
@@ -201,7 +201,7 @@ bool LLImageDimensionsInfo::getImageDimensionsJpeg()
cinfo.out_color_space = JCS_RGB;
jpeg_start_decompress (&cinfo);
- mHeight = cinfo.output_width;
+ mWidth = cinfo.output_width;
mHeight = cinfo.output_height;
jpeg_destroy_decompress(&cinfo);