diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:42:39 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:42:39 -0600 |
commit | 006299c50d4b53bfb0db7015f97014dec80891c7 (patch) | |
tree | 80053b47a74326c536a65bad217408f7926fa34c /lotuswordpro | |
parent | 03c62fa7d7c3bc7058dbd5cf4629ca81ac51650f (diff) |
coverity#738713 Unitialized scalar field
Change-Id: I9241531bd9c7881c6edb57c4f3c0c8b594dae0d6
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpfootnote.hxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpfootnote.hxx b/lotuswordpro/source/filter/lwpfootnote.hxx index d05cb4803c2f..f4f0dcf7c1b9 100644 --- a/lotuswordpro/source/filter/lwpfootnote.hxx +++ b/lotuswordpro/source/filter/lwpfootnote.hxx @@ -198,7 +198,14 @@ public: class LwpFootnoteSeparatorOptions { public: - LwpFootnoteSeparatorOptions(){} + LwpFootnoteSeparatorOptions() + : m_nFlag(0) + , m_nLength(0) + , m_nIndent(0) + , m_nAbove(0) + , m_nBelow(0) + {} + ~LwpFootnoteSeparatorOptions(){} void Read(LwpObjectStream* pObjStrm); private: |