Kaydet (Commit) 595db7fa authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708590 Uninitialized pointer field

Change-Id: Ibd425a4778e2d9b1feb5f54565d80673f03e8e56
üst 880e7587
......@@ -412,12 +412,21 @@ private:
};
CffSubsetterContext::CffSubsetterContext( const U8* pBasePtr, int nBaseLen)
: mpBasePtr( pBasePtr)
, mpBaseEnd( pBasePtr+nBaseLen)
, mnStackIdx(0)
, mnHintSize(0)
, mnHorzHintSize(0)
, maCharWidth(-1)
: mpBasePtr( pBasePtr)
, mpBaseEnd( pBasePtr+nBaseLen)
, mpReadPtr(NULL)
, mpReadEnd(NULL)
, mpWritePtr(NULL)
, mbSawError(false)
, mbNeedClose(false)
, mbIgnoreHints(false)
, mnCntrMask(0)
, mpCharStringOps(NULL)
, mpCharStringEscs(NULL)
, mnStackIdx(0)
, mnHintSize(0)
, mnHorzHintSize(0)
, maCharWidth(-1)
{
// setCharStringType( 1);
// TODO: new CffLocal[ mnFDAryCount];
......
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