diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-27 03:30:41 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-27 06:26:09 +0100 |
commit | 66dc20ae279e4f913795ff6e959d83eaefed78b4 (patch) | |
tree | 8849f969eff25d3ccb769565c3478107f9b6a27e /xmloff/source/style/xmlnumi.cxx | |
parent | 5a2477c43412a58e4fb9918688d1ff7173125f5b (diff) |
coverity#441041: unitialized variable
Change-Id: I5918448afaf5409d9372592011d936b48701903d
Diffstat (limited to 'xmloff/source/style/xmlnumi.cxx')
-rw-r--r-- | xmloff/source/style/xmlnumi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/xmlnumi.cxx b/xmloff/source/style/xmlnumi.cxx index 8e89cbadd1e1..4237349b7093 100644 --- a/xmloff/source/style/xmlnumi.cxx +++ b/xmloff/source/style/xmlnumi.cxx @@ -440,7 +440,7 @@ SvXMLImportContext *SvxXMLListLevelStyleContext_Impl::CreateChildContext( Sequence<beans::PropertyValue> SvxXMLListLevelStyleContext_Impl::GetProperties( const SvI18NMap *pI18NMap ) { - sal_Int16 eType; + sal_Int16 eType = NUMBER_NONE; sal_Int32 nCount = 0; if( bBullet ) |