Kaydet (Commit) 8cd787a4 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1169874 Uninitialized scalar field

Change-Id: Ie81eb6730c0e7e3c1b58f43697cb51587c3caf5d
üst 661acb5e
...@@ -219,11 +219,15 @@ public: ...@@ -219,11 +219,15 @@ public:
SwAttrCheckArr::SwAttrCheckArr( const SfxItemSet& rSet, bool bFwd, SwAttrCheckArr::SwAttrCheckArr( const SfxItemSet& rSet, bool bFwd,
bool bNoCollections ) bool bNoCollections )
: aCmpSet( *rSet.GetPool(), RES_CHRATR_BEGIN, RES_TXTATR_END-1 ) : nNdStt(0)
, nNdEnd(0)
, nFound(0)
, nStackCnt(0)
, aCmpSet( *rSet.GetPool(), RES_CHRATR_BEGIN, RES_TXTATR_END-1 )
, bNoColls(bNoCollections)
, bForward(bFwd)
{ {
aCmpSet.Put( rSet, false ); aCmpSet.Put( rSet, false );
bNoColls = bNoCollections;
bForward = bFwd;
// determine area of Fnd/Stack array (Min/Max) // determine area of Fnd/Stack array (Min/Max)
SfxItemIter aIter( aCmpSet ); SfxItemIter aIter( aCmpSet );
......
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