diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-02 12:23:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-02 15:51:17 +0100 |
commit | dc1277767d507dde91a1c7999ebdc26caaa922a3 (patch) | |
tree | 902c9d5de5289272777754da52f3033b6f142deb /vcl | |
parent | 99007fdb8e70ee6c2f05cf60808c3e6aa76311a2 (diff) |
coverity#708600 Uninitialized pointer field
Change-Id: I50da1da601981d55f413e03b063cda60b10893e6
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/impimage.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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) { } |