summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-11-27 09:33:42 +0100
committerMichael Stahl <mstahl@redhat.com>2015-11-27 09:34:33 +0100
commita933990a3f24f7c3ed40500f782f6fcb25462824 (patch)
tree20fac75b17bb9d70fec73874c95e52b6cc98fc69 /xmlsecurity
parent2fed793e19e355ead5a1d6703835c86fb5ac02c0 (diff)
xmlsecurity: fix DrMemory warning
Presumably that was the intent? Change-Id: Ibfca90041d6913827d2f329bab448afe4d725b46
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/xmlsec/saxhelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/xmlsec/saxhelper.cxx b/xmlsecurity/source/xmlsec/saxhelper.cxx
index 0339067cf583..b1b779324cea 100644
--- a/xmlsecurity/source/xmlsec/saxhelper.cxx
+++ b/xmlsecurity/source/xmlsec/saxhelper.cxx
@@ -135,7 +135,7 @@ SAXHelper::SAXHelper( )
{
xmlSAXVersion(m_pParserCtxt->sax, 1);
- if( m_pParserCtxt->inputTab[0] != nullptr )
+ if (m_pParserCtxt->inputTab != nullptr)
{
m_pParserCtxt->inputTab[0] = nullptr ;
}