diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:43:47 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 21:43:47 -0600 |
commit | 240dee4a55186119d74a1ac36f92d54769d636c0 (patch) | |
tree | 3e23e5cab2635e57ba71f50325930dbb118d9a54 /lotuswordpro/source | |
parent | 006299c50d4b53bfb0db7015f97014dec80891c7 (diff) |
coverity#738712 Unitialized scalar field
Change-Id: Ia1433be559d445ba3ae4d118003a59275c0e9bd5
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/lwpfootnote.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpfootnote.hxx b/lotuswordpro/source/filter/lwpfootnote.hxx index f4f0dcf7c1b9..e7ece5f2b347 100644 --- a/lotuswordpro/source/filter/lwpfootnote.hxx +++ b/lotuswordpro/source/filter/lwpfootnote.hxx @@ -166,7 +166,11 @@ protected: class LwpFootnoteNumberOptions { public: - LwpFootnoteNumberOptions(){} + LwpFootnoteNumberOptions() + : m_nFlag(0) + , m_nStartingNumber(0) + {} + ~LwpFootnoteNumberOptions(){} void Read(LwpObjectStream* pObjStrm); private: |