diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-17 09:23:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-17 09:43:17 +0100 |
commit | e8c424c3e3ed2717c75c85b4ba36d77767e668b0 (patch) | |
tree | 5f28354796b1397a6d009c08fe16c85091c0cb0a /xmloff | |
parent | 8721ae4f77587aa14032708638c2b5a63355a2c7 (diff) |
coverity#738948 Uninitialized scalar field
Change-Id: Ieca446ab69b84249059c5ce4ec713832bd0a8134
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlnumfi.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmloff/source/style/xmlnumfi.cxx b/xmloff/source/style/xmlnumfi.cxx index e34e5ea8c4d8..676cd82276a0 100644 --- a/xmloff/source/style/xmlnumfi.cxx +++ b/xmloff/source/style/xmlnumfi.cxx @@ -656,6 +656,7 @@ SvXMLNumFmtPropContext::SvXMLNumFmtPropContext( SvXMLImport& rImport, const uno::Reference<xml::sax::XAttributeList>& xAttrList ) : SvXMLImportContext( rImport, nPrfx, rLName ), rParent( rParentContext ), + m_nColor( 0 ), bColSet( false ) { sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0; |