summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-11 13:33:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-11 14:11:21 +0100
commit33770af00eb6bc7367661148dbfe5d517e3f8231 (patch)
tree49e944bf29865108ff8ed38401a817bb311ea254 /lotuswordpro
parent7f64da067644972ea7990977e1f45ab588166c15 (diff)
coverity#738699 Uninitialized scalar field
Change-Id: I54a649f077ce41354a8aac60e39b7d81de239f33
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpsdwdrawheader.hxx6
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