diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 13:33:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 14:11:21 +0100 |
commit | 33770af00eb6bc7367661148dbfe5d517e3f8231 (patch) | |
tree | 49e944bf29865108ff8ed38401a817bb311ea254 | |
parent | 7f64da067644972ea7990977e1f45ab588166c15 (diff) |
coverity#738699 Uninitialized scalar field
Change-Id: I54a649f077ce41354a8aac60e39b7d81de239f33
-rw-r--r-- | lotuswordpro/source/filter/lwpsdwdrawheader.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpsdwdrawheader.hxx b/lotuswordpro/source/filter/lwpsdwdrawheader.hxx index 7a9fcd463e6e..d3daa66f593c 100644 --- a/lotuswordpro/source/filter/lwpsdwdrawheader.hxx +++ b/lotuswordpro/source/filter/lwpsdwdrawheader.hxx @@ -282,6 +282,12 @@ struct SdwBmpRecord sal_uInt16 nTranslation; sal_uInt16 nRotation; sal_uInt32 nFileSize; + SdwBmpRecord() + : nTranslation(0) + , nRotation(0) + , nFileSize(0) + { + } }; struct BmpInfoHeader |