summaryrefslogtreecommitdiffstats
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-04 14:09:48 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-04 16:24:34 +0100
commit02cd8fe346e0e7929a2ab2c9939f0cd1eb50f695 (patch)
treeddd8138ee4e188ea861586291ee611296da0b4ad /lotuswordpro
parentcoverity#738690 Uninitialized scalar field (diff)
downloadcore-02cd8fe346e0e7929a2ab2c9939f0cd1eb50f695.tar.gz
core-02cd8fe346e0e7929a2ab2c9939f0cd1eb50f695.zip
coverity#738691 Uninitialized scalar field
Change-Id: I961ab20b4ecb902469e9f5eec4c13b9f51a0aba1
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpdivopts.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpdivopts.cxx b/lotuswordpro/source/filter/lwpdivopts.cxx
index 292034f31945..2453710c08ad 100644
--- a/lotuswordpro/source/filter/lwpdivopts.cxx
+++ b/lotuswordpro/source/filter/lwpdivopts.cxx
@@ -80,7 +80,11 @@ void LwpHyphenOptions::Read(LwpObjectStream *pStrm)
pStrm->SkipExtra();
}
-LwpTextLanguage::LwpTextLanguage(){}
+LwpTextLanguage::LwpTextLanguage()
+ : m_nLanguage(0)
+{
+}
+
LwpTextLanguage::~LwpTextLanguage(){}
void LwpTextLanguage::Read(LwpObjectStream *pStrm)