Kaydet (Commit) 3335880d authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#708233: Unitialized scalar field

Change-Id: Ifd24c4520f1c445af5443ed8e81bb6c6c47cd64c
üst 6a615262
......@@ -1517,8 +1517,10 @@ protected:
public:
SmXMLUnderContext_Impl(SmXMLImport &rImport,sal_uInt16 nPrefix,
const OUString& rLName)
: SmXMLSubContext_Impl(rImport,nPrefix,rLName) {}
const OUString& rLName)
: SmXMLSubContext_Impl(rImport,nPrefix,rLName)
, nAttrCount( 0 )
{}
void StartElement(const uno::Reference< xml::sax::XAttributeList > &xAttrList ) SAL_OVERRIDE;
void EndElement() SAL_OVERRIDE;
......
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