From dc1277767d507dde91a1c7999ebdc26caaa922a3 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 2 Apr 2014 12:23:44 +0100 Subject: coverity#708600 Uninitialized pointer field Change-Id: I50da1da601981d55f413e03b063cda60b10893e6 --- vcl/source/gdi/impimage.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vcl') diff --git a/vcl/source/gdi/impimage.cxx b/vcl/source/gdi/impimage.cxx index 0e1fd7e6a4fc..2d054ab75c76 100644 --- a/vcl/source/gdi/impimage.cxx +++ b/vcl/source/gdi/impimage.cxx @@ -119,6 +119,8 @@ bool ImplImageData::IsEqual( const ImplImageData& rData ) ImplImage::ImplImage() : mnRefCount(1) + , mpData(NULL) + , meType(IMAGETYPE_BITMAP) { } -- cgit