Kaydet (Commit) 703078f9 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#708445 Unitialized scalar field

Change-Id: I844cf39a38ba4ea2495997a91b20d5e82c3b3840
üst d6388e4d
......@@ -69,7 +69,19 @@ protected:
void Rst( SwTxtAttr *pHt );
void CtorInitAttrIter( SwTxtNode& rTxtNode, SwScriptInfo& rScrInf, SwTxtFrm* pFrm = 0 );
SwAttrIter(SwTxtNode* pTxtNode)
: pShell(0), pFnt(0), pHints(0), pAttrSet(0), pScriptInfo(0), pLastOut(0), nChgCnt(0), pRedln(0), nPropFont(0), m_pTxtNode(pTxtNode)
: pShell(0)
, pFnt(0)
, pHints(0)
, pAttrSet(0)
, pScriptInfo(0)
, pLastOut(0)
, nChgCnt(0)
, pRedln(0)
, nStartIndex(0)
, nEndIndex(0)
, nPos(0)
, nPropFont(0)
, m_pTxtNode(pTxtNode)
{
aMagicNo[SW_LATIN] = aMagicNo[SW_CJK] = aMagicNo[SW_CTL] = NULL;
}
......
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