diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 20:31:20 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 20:31:20 -0600 |
commit | f7de7e066afb75a8dad3bbbcaa24d4591a8168fb (patch) | |
tree | 27cb355512f73df8dafe0d4fa35961d9d61711d4 /lotuswordpro | |
parent | f16d329fb6fc827ceb69cf62dfd6cc4d4006848b (diff) |
coverity#738747: Unitialized scalar field
Change-Id: I80a3698d20eece7c9e7fff3a6f7e806bd435555f
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpsilverbullet.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpsilverbullet.cxx b/lotuswordpro/source/filter/lwpsilverbullet.cxx index d03216a7b0b0..8c2f0a2e33d4 100644 --- a/lotuswordpro/source/filter/lwpsilverbullet.cxx +++ b/lotuswordpro/source/filter/lwpsilverbullet.cxx @@ -72,7 +72,11 @@ #include "xfilter/xfstylemanager.hxx" LwpSilverBullet::LwpSilverBullet(LwpObjectHeader& objHdr, LwpSvStream* pStrm) - : LwpDLNFVList(objHdr, pStrm), m_pAtomHolder(new LwpAtomHolder), m_pBulletPara(NULL) + : LwpDLNFVList(objHdr, pStrm) + , m_nFlags(0) + , m_nUseCount(0) + , m_pAtomHolder(new LwpAtomHolder) + , m_pBulletPara(NULL) { } |