diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:47:28 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:47:28 -0600 |
commit | 15aeb69e5b4b8f41e303b664597754a5f838276a (patch) | |
tree | e96f6f51e35ad45303d0076cdfd2c8291dfaada8 /lotuswordpro | |
parent | 89d6bef541bf894f27bcb79d96220f60aacbf77c (diff) |
coverity#738709 Unitialized scalar field
Change-Id: Ic2480dda2ceb1afd768effcc3df718fb73a222fb
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpfont.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpfont.hxx b/lotuswordpro/source/filter/lwpfont.hxx index 7cdf58d918f2..408b31472866 100644 --- a/lotuswordpro/source/filter/lwpfont.hxx +++ b/lotuswordpro/source/filter/lwpfont.hxx @@ -234,7 +234,10 @@ private: class LwpFontAttrManager { public: - LwpFontAttrManager():m_pFontAttrs(NULL){} + LwpFontAttrManager() + : m_nCount(0) + , m_pFontAttrs(NULL) + {} ~LwpFontAttrManager(); public: void Read(LwpObjectStream *pStrm); |