summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-11 13:35:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-11 14:11:21 +0100
commit013cca1e82c5cbb2a8940bc6b51b39a05371cef1 (patch)
treea30acc93af7bddc6b4f695e9fbcea5cd26c94d65 /lotuswordpro
parent33770af00eb6bc7367661148dbfe5d517e3f8231 (diff)
coverity#738698 Uninitialized scalar field
Change-Id: I6eb0d07acb807407712aac0c09e032dcc4d62dc3
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpsdwdrawheader.hxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpsdwdrawheader.hxx b/lotuswordpro/source/filter/lwpsdwdrawheader.hxx
index d3daa66f593c..519411347bdf 100644
--- a/lotuswordpro/source/filter/lwpsdwdrawheader.hxx
+++ b/lotuswordpro/source/filter/lwpsdwdrawheader.hxx
@@ -212,6 +212,16 @@ struct SdwLineRecord
sal_uInt8 nLineEnd;
sal_uInt8 nLineStyle;
SdwColor aPenColor;
+ SdwLineRecord()
+ : nStartX(0)
+ , nStartY(0)
+ , nEndX(0)
+ , nEndY(0)
+ , nLineWidth(0)
+ , nLineEnd(0)
+ , nLineStyle(0)
+ {
+ }
};
struct SdwPolyLineRecord