diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 14:10:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 16:24:34 +0100 |
commit | ccd6e6270013b8859676546f21e96f2d0c74fd4e (patch) | |
tree | 686191a2fb56430b3a89a0aeff8a60706ee78c2b /lotuswordpro | |
parent | 02cd8fe346e0e7929a2ab2c9939f0cd1eb50f695 (diff) |
coverity#738692 Uninitialized scalar field
Change-Id: I8f93df9ada7009b001543a65c90ceb9c545bbdcf
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpdivopts.cxx | 7 |
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() {} |