diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 14:11:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 21:12:57 +0100 |
commit | c779eec2e2dfac5208cadd4b37833c4eeb31a426 (patch) | |
tree | c50ac8cccb7db222f0cdd53b5b9bff2e00601906 /vcl | |
parent | cbe85c63d64d952696aa2643a07ce3af29555c57 (diff) |
coverity#708321 Uninitialized scalar field
Change-Id: Ide820b6648579f8d9cbc395843aff602cf895f15
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/wmf/wmfwr.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vcl/source/filter/wmf/wmfwr.cxx b/vcl/source/filter/wmf/wmfwr.cxx index a74555ab0360..dab173ccb985 100644 --- a/vcl/source/filter/wmf/wmfwr.cxx +++ b/vcl/source/filter/wmf/wmfwr.cxx @@ -132,7 +132,9 @@ #define PRIVATE_ESCAPE_UNICODE 2 WMFWriter::WMFWriter() - : pWMF(NULL) + : bStatus(false) + , nLastPercent(0) + , pWMF(NULL) , pVirDev(NULL) , nMetafileHeaderPos(0) , nMaxRecordSize(0) |