diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 18:27:49 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 18:27:49 -0600 |
commit | e244600209fe9f33027216369f13b6a5fbd93c13 (patch) | |
tree | 3ed27d1a8828b07f27360ebd7b7cdbebec71ceb0 /lotuswordpro | |
parent | 51f74e362b364e51f13f3abaa00df1aa01c81cef (diff) |
coverity#738707: Unitialized scalar field
Change-Id: I02a9d6ee6151c6a8c3ee61c3c7dcf1dc432b453f
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 2adcf51d39a2..82d866bb0b0c 100644 --- a/lotuswordpro/source/filter/lwpfont.hxx +++ b/lotuswordpro/source/filter/lwpfont.hxx @@ -180,7 +180,15 @@ public: class LwpFontAttrEntry { public: - LwpFontAttrEntry(){} + LwpFontAttrEntry() + : m_nAttrBits(0) + , m_nAttrOverrideBits(0) + , m_nAttrApplyBits(0) + , m_nAttrOverrideBits2(0) + , m_nAttrApplyBits2(0) + , m_nCase(0) + , m_nUnder(0) + {} ~LwpFontAttrEntry(){} public: void Read(LwpObjectStream *pStrm); |