diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-03 13:30:13 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-03 13:30:13 +0100 |
commit | 094f00651aacac27cffd6839bb4809664a85dabc (patch) | |
tree | ed3e60d720777d33ad1d544cf086603c81ce88bd /xmlsecurity | |
parent | 717f214e66fd901826eb242d8389c4ba91fbd276 (diff) |
CID#708741 uninitialized members
Change-Id: I15475d560e889b0f0fc91d96cfa6ae97e81a41b5
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx index 853bbc63ccad..ee3eb883b349 100644 --- a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx +++ b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx @@ -55,7 +55,11 @@ namespace cssxw = com::sun::star::xml::wrapper; #define NODE_NOTREMOVED 1 #define NODE_STOPED 2 -XMLDocumentWrapper_XmlSecImpl::XMLDocumentWrapper_XmlSecImpl( ) +XMLDocumentWrapper_XmlSecImpl::XMLDocumentWrapper_XmlSecImpl() + : m_nCurrentPosition(0) + , m_pStopAtNode(0) + , m_pCurrentReservedNode(0) + , m_nReservedNodeIndex(0) { saxHelper.startDocument(); m_pDocument = saxHelper.getDocument(); |