diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 13:41:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 14:11:22 +0100 |
commit | 2e87d4241f36b66a1628b0f8c7bb610c63b8c450 (patch) | |
tree | 3c288026e729ed14d9ae410f57992ce4c781087c /lotuswordpro | |
parent | 711470cdee4019180150dccbdb7b826f678ad025 (diff) |
coverity#738696 Uninitialized scalar field
Change-Id: I96fd8829d8854e3d3412ef4a0ba9fadf838e0f48
Diffstat (limited to 'lotuswordpro')
-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 a755dfac262e..af6ae5f6c55a 100644 --- a/lotuswordpro/source/filter/lwpsdwdrawheader.hxx +++ b/lotuswordpro/source/filter/lwpsdwdrawheader.hxx @@ -257,6 +257,12 @@ struct SdwArcRecord sal_uInt8 nLineEnd; sal_uInt8 nLineStyle; SdwColor aPenColor; + SdwArcRecord() + : nLineWidth(0) + , nLineEnd(0) + , nLineStyle(0) + { + } }; struct SdwTextBoxRecord |