diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 20:17:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:09 +0100 |
commit | dbbb805bf05d2371ea9dbd5f39fbeb67ecefd8b8 (patch) | |
tree | a494164c6bd5cdde75fbe6a9ca46a070ca8d323a /svx/source/dialog/svxbmpnumvalueset.cxx | |
parent | eb1c0480050a1328287c4a85468afbec50b0e29d (diff) |
coverity#1202908 Uninitialized scalar variable
Change-Id: If9801de8469126f0e1c255f9526d1bcf76e7f372
Diffstat (limited to 'svx/source/dialog/svxbmpnumvalueset.cxx')
-rw-r--r-- | svx/source/dialog/svxbmpnumvalueset.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/dialog/svxbmpnumvalueset.cxx b/svx/source/dialog/svxbmpnumvalueset.cxx index 4a542e20e6dd..75cd2c673d13 100644 --- a/svx/source/dialog/svxbmpnumvalueset.cxx +++ b/svx/source/dialog/svxbmpnumvalueset.cxx @@ -285,6 +285,7 @@ void SvxNumValueSet::UserDraw( const UserDrawEvent& rUDEvt ) aLevelAny >>= aLevel; const PropertyValue* pValues = aLevel.getConstArray(); aNumberingTypes[i] = 0; + aParentNumberings[i] = 0; for(sal_Int32 nProperty = 0; nProperty < aLevel.getLength() - 1; nProperty++) { if ( pValues[nProperty].Name == cNumberingType ) |