diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 18:24:07 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 18:24:07 -0600 |
commit | 51f74e362b364e51f13f3abaa00df1aa01c81cef (patch) | |
tree | 641b9d13f4295b579922da753af6149b73d1b572 /lotuswordpro | |
parent | 4fcd5534348adcb61ab85b93478c272b8d9e8f8c (diff) |
coverity#738708: Unitialized scalar field
Change-Id: I9c5c36a41131f55faf2b31b347b0df4eb5cc21e2
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpfont.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpfont.hxx b/lotuswordpro/source/filter/lwpfont.hxx index 408b31472866..2adcf51d39a2 100644 --- a/lotuswordpro/source/filter/lwpfont.hxx +++ b/lotuswordpro/source/filter/lwpfont.hxx @@ -110,7 +110,15 @@ private: class LwpFontNameEntry { public: - LwpFontNameEntry(){} + LwpFontNameEntry() + : m_nOverrideBits(0) + , m_nApplyBits(0) + , m_nPointSize(0) + , m_nOverstrike(0) + , m_nTightness(0) + , m_nFaceName(0) + , m_nAltFaceName(0) + {} ~LwpFontNameEntry(){} public: void Read(LwpObjectStream *pStrm); |