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-30 14:33:42 +0100
commitf9a135b5094d49920b1224cb4a5ee92a7410d269 (patch)
treeeecd235387c9ef4ac30c2e4c9ecf05fa038253a2 /xmlsecurity
parent708050dcc88fd223103e2c66e260696b843f1cff (diff)
xmlsecurity: fix DrMemory warning
Presumably that was the intent? Change-Id: Ibfca90041d6913827d2f329bab448afe4d725b46 (cherry picked from commit a933990a3f24f7c3ed40500f782f6fcb25462824)
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 589e89028bd8..5143aac3d8e2 100644
--- a/xmlsecurity/source/xmlsec/saxhelper.cxx
+++ b/xmlsecurity/source/xmlsec/saxhelper.cxx
@@ -137,7 +137,7 @@ SAXHelper::SAXHelper( )
{
xmlSAXVersion(m_pParserCtxt->sax, 1);
- if( m_pParserCtxt->inputTab[0] != nullptr )
+ if (m_pParserCtxt->inputTab != nullptr)
{
m_pParserCtxt->inputTab[0] = nullptr ;
}