summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-04 14:10:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-04 16:24:34 +0100
commitccd6e6270013b8859676546f21e96f2d0c74fd4e (patch)
tree686191a2fb56430b3a89a0aeff8a60706ee78c2b /lotuswordpro
parent02cd8fe346e0e7929a2ab2c9939f0cd1eb50f695 (diff)
coverity#738692 Uninitialized scalar field
Change-Id: I8f93df9ada7009b001543a65c90ceb9c545bbdcf
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpdivopts.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpdivopts.cxx b/lotuswordpro/source/filter/lwpdivopts.cxx
index 2453710c08ad..70ee56646f5e 100644
--- a/lotuswordpro/source/filter/lwpdivopts.cxx
+++ b/lotuswordpro/source/filter/lwpdivopts.cxx
@@ -66,7 +66,12 @@
#include "lwpfilehdr.hxx"
LwpHyphenOptions::LwpHyphenOptions()
-{}
+ : m_nFlags(0)
+ , m_nZoneBefore(0)
+ , m_nZoneAfter(0)
+ , m_nMaxLines(0)
+{
+}
LwpHyphenOptions::~LwpHyphenOptions()
{}