diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 13:35:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 14:11:21 +0100 |
commit | 013cca1e82c5cbb2a8940bc6b51b39a05371cef1 (patch) | |
tree | a30acc93af7bddc6b4f695e9fbcea5cd26c94d65 /lotuswordpro | |
parent | 33770af00eb6bc7367661148dbfe5d517e3f8231 (diff) |
coverity#738698 Uninitialized scalar field
Change-Id: I6eb0d07acb807407712aac0c09e032dcc4d62dc3
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpsdwdrawheader.hxx | 10 |
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 |