summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-05-28 14:22:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-05-28 14:24:39 +0100
commit7c9ae6bd33a8da3d5dd1e8086ae9e4a53e7d102c (patch)
tree0ae92082ae7fb252aa49d4f201c6798e9ca3e047 /vcl
parentf0c1887fc60b0537172dc07a14f1d59da902b44b (diff)
valgrind: Related rhbz#820376 mnDestWidth used without initialization
Change-Id: Id52458441fc2ef3b466f5e4f716b0341dca11091
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/outdev2.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx
index 45cc6a265811..a90c05ddd0af 100644
--- a/vcl/source/gdi/outdev2.cxx
+++ b/vcl/source/gdi/outdev2.cxx
@@ -406,6 +406,8 @@ void OutputDevice::CopyArea( const Point& rDestPt,
aPosAry.mnSrcY = ImplLogicYToDevicePixel( rSrcPt.Y() );
aPosAry.mnDestX = ImplLogicXToDevicePixel( rDestPt.X() );
aPosAry.mnDestY = ImplLogicYToDevicePixel( rDestPt.Y() );
+ aPosAry.mnDestWidth = aPosAry.mnSrcWidth;
+ aPosAry.mnDestHeight = aPosAry.mnSrcHeight;
const Rectangle aSrcOutRect( Point( mnOutOffX, mnOutOffY ),
Size( mnOutWidth, mnOutHeight ) );