diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-10 21:00:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-10 21:07:57 +0100 |
commit | 788c433a4a829f5054a0ee474de109317bdd6f3a (patch) | |
tree | 6ab2c07a707c38a38f0f1a7cc5af1737a28587c0 /sw | |
parent | cdf8c72cedfee96f956e210dee37cbb501709300 (diff) |
coverity#708418 Uninitialized scalar field
Change-Id: Id33b99cbad88eea79a7ac75d8d99ffcc71d4f7b4
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/edit/edlingu.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sw/source/core/edit/edlingu.cxx b/sw/source/core/edit/edlingu.cxx index bc3a0fa6e09f..d0c84bd55b5a 100644 --- a/sw/source/core/edit/edlingu.cxx +++ b/sw/source/core/edit/edlingu.cxx @@ -181,7 +181,12 @@ const SwTxtNode *pLinguNode; SwTxtFrm *pLinguFrm; 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. } |