Kaydet (Commit) 6c97ca24 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738737: Unitialized scalar field

Change-Id: Iaf00e15ff201d27aef54180524a55e6e5b151724
üst d2eefbdb
......@@ -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)
{
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment