Kaydet (Commit) 63c1ea7b authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708506 Uninitialized pointer field

Change-Id: I44d9a278bb2f08a8c71f28a9e175d0771cfd87ea
üst 122c1e64
......@@ -3664,8 +3664,21 @@ void WW8RStyle::ImportGrupx(short nLen, bool bPara, bool bOdd)
}
WW8RStyle::WW8RStyle(WW8Fib& _rFib, SwWW8ImplReader* pI)
: WW8Style(*pI->pTableStream, _rFib), maSprmParser(_rFib.GetFIBVersion()),
pIo(pI), pStStrm(pI->pTableStream), pStyRule(0), nWwNumLevel(0)
: WW8Style(*pI->pTableStream, _rFib)
, maSprmParser(_rFib.GetFIBVersion())
, pIo(pI)
, pStStrm(pI->pTableStream)
, pStyRule(0)
, pParaSprms(0)
, nSprmsLen(0)
, nWwNumLevel(0)
, bTxtColChanged(false)
, bFontChanged(false)
, bCJKFontChanged(false)
, bCTLFontChanged(false)
, bFSizeChanged(false)
, bFCTLSizeChanged(false)
, bWidowsChanged(false)
{
pIo->vColl.resize(cstd);
}
......
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