summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-03 13:30:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-03 13:30:13 +0100
commit094f00651aacac27cffd6839bb4809664a85dabc (patch)
treeed3e60d720777d33ad1d544cf086603c81ce88bd /xmlsecurity
parent717f214e66fd901826eb242d8389c4ba91fbd276 (diff)
CID#708741 uninitialized members
Change-Id: I15475d560e889b0f0fc91d96cfa6ae97e81a41b5
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx6
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();