Kaydet (Commit) 788c433a authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708418 Uninitialized scalar field

Change-Id: Id33b99cbad88eea79a7ac75d8d99ffcc71d4f7b4
üst cdf8c72c
...@@ -181,7 +181,12 @@ const SwTxtNode *pLinguNode; ...@@ -181,7 +181,12 @@ const SwTxtNode *pLinguNode;
SwTxtFrm *pLinguFrm; SwTxtFrm *pLinguFrm;
SwLinguIter::SwLinguIter() SwLinguIter::SwLinguIter()
: pSh( 0 ), pStart( 0 ), pEnd( 0 ), pCurr( 0 ), pCurrX( 0 ) : pSh(0)
, pStart(0)
, pEnd(0)
, pCurr(0)
, pCurrX(0)
, nCrsrCnt(0)
{ {
// TODO missing: ensurance of re-entrance, OSL_ENSURE( etc. // TODO missing: ensurance of re-entrance, OSL_ENSURE( etc.
} }
......
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