diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-11-27 09:33:42 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-11-27 09:34:33 +0100 |
commit | a933990a3f24f7c3ed40500f782f6fcb25462824 (patch) | |
tree | 20fac75b17bb9d70fec73874c95e52b6cc98fc69 /xmlsecurity | |
parent | 2fed793e19e355ead5a1d6703835c86fb5ac02c0 (diff) |
xmlsecurity: fix DrMemory warning
Presumably that was the intent?
Change-Id: Ibfca90041d6913827d2f329bab448afe4d725b46
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/saxhelper.cxx | 2 |
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 ; } |