summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-04 14:11:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-04 16:24:34 +0100
commitb08fa45ee4b0cdb6799d37029f975588a5f38fc5 (patch)
treee64c40f40a88c858279e4010a8a38932b4f41ac7 /lotuswordpro
parentccd6e6270013b8859676546f21e96f2d0c74fd4e (diff)
coverity#738693 Uninitialized scalar field
Change-Id: Icf69f17d7e4e243987b67b28ce2885cba2a5d9e7
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpdivopts.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpdivopts.cxx b/lotuswordpro/source/filter/lwpdivopts.cxx
index 70ee56646f5e..9c8a98a2195e 100644
--- a/lotuswordpro/source/filter/lwpdivopts.cxx
+++ b/lotuswordpro/source/filter/lwpdivopts.cxx
@@ -127,7 +127,9 @@ sal_uInt16 LwpTextLanguage::ConvertFrom96(sal_uInt16 orgLang)
LwpDivisionOptions::LwpDivisionOptions(LwpObjectHeader& objHdr, LwpSvStream* pStrm)
: LwpObject(objHdr, pStrm)
-{}
+ , m_nOptionFlag(0)
+{
+}
LwpDivisionOptions::~LwpDivisionOptions()
{}