summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:28:05 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:28:05 -0600
commit6c97ca241248afb969802bc2ef20b1eed53718e3 (patch)
tree8699ce2d56ec5b5c69c9bb85a5c62f2acdffa2cc /lotuswordpro
parentd2eefbdb42bb1f0098c7dae0ec30d8459aacd66c (diff)
coverity#738737: Unitialized scalar field
Change-Id: Iaf00e15ff201d27aef54180524a55e6e5b151724
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwppagehint.cxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwppagehint.cxx b/lotuswordpro/source/filter/lwppagehint.cxx
index df34d9f8d0ed..0bbec7647449 100644
--- a/lotuswordpro/source/filter/lwppagehint.cxx
+++ b/lotuswordpro/source/filter/lwppagehint.cxx
@@ -83,7 +83,16 @@ void LwpFootnoteSeenHead::Read(LwpObjectStream* pObjStrm)
}
LwpPageHint::LwpPageHint(LwpObjectHeader &objHdr, LwpSvStream *pStrm)
- :LwpDLVList(objHdr,pStrm)
+ : LwpDLVList(objHdr,pStrm)
+ , m_nLastFootnoteSeen(0)
+ , m_nLastFootnoteProcessed(0)
+ , m_nFlags(0)
+ , m_nPageNumber(0)
+ , m_nNumberStyle(0)
+ , m_nNumberFlags(0)
+ , m_nRenderedPageNumber(0)
+ , m_nCurrentSectionPage(0)
+ , m_nLayoutPageNumber(0)
{
}