From 33770af00eb6bc7367661148dbfe5d517e3f8231 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 11 Apr 2014 13:33:49 +0100 Subject: coverity#738699 Uninitialized scalar field Change-Id: I54a649f077ce41354a8aac60e39b7d81de239f33 --- lotuswordpro/source/filter/lwpsdwdrawheader.hxx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lotuswordpro/source') 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 -- cgit