diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 14:07:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 16:24:33 +0100 |
commit | ec7f407b8cf104d64f43f0d4f4cb89d95050ce11 (patch) | |
tree | 679ecef8eb7c8df06413fc0a36bc4c7be32c9a3f | |
parent | 84bf09ff69e4fc0a5543c10296e4e704fa7d6c56 (diff) |
coverity#738689 Uninitialized scalar field
Change-Id: I269a52ee3c4ddec5188d8f97aa8fe7273fae2978
-rw-r--r-- | lotuswordpro/source/filter/lwpcontent.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpcontent.cxx b/lotuswordpro/source/filter/lwpcontent.cxx index 254ac4500cc9..4b6e12a8e23c 100644 --- a/lotuswordpro/source/filter/lwpcontent.cxx +++ b/lotuswordpro/source/filter/lwpcontent.cxx @@ -78,7 +78,9 @@ void LwpHeadContent::Read() LwpContent::LwpContent(LwpObjectHeader &objHdr, LwpSvStream* pStrm) : LwpDLNFVList(objHdr, pStrm) -{} + , m_nFlags(0) +{ +} void LwpContent::Read() { |