diff options
author | Stanislav Malyshev <stas@php.net> | 2021-01-31 21:15:23 -0800 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2021-02-02 16:18:44 -0300 |
commit | f733ee195462201b2cbd1d17df2f752ee88771ba (patch) | |
tree | 86d730f0a628cbefbada41421831bc3491c425e7 /ext/soap/php_xml.c | |
parent | 5070a0f689f94ff2d8b6b09dcaea93a2d8a705ad (diff) | |
download | php-git-f733ee195462201b2cbd1d17df2f752ee88771ba.tar.gz |
Fix bug #80672 - Null Dereference in SoapClient
Diffstat (limited to 'ext/soap/php_xml.c')
-rw-r--r-- | ext/soap/php_xml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c index df55678159..e290786f7a 100644 --- a/ext/soap/php_xml.c +++ b/ext/soap/php_xml.c @@ -197,7 +197,7 @@ xmlNsPtr node_find_ns(xmlNodePtr node) int attr_is_equal_ex(xmlAttrPtr node, char *name, char *ns) { - if (name == NULL || strcmp((char*)node->name, name) == 0) { + if (name == NULL || ((node->name) && strcmp((char*)node->name, name) == 0)) { if (ns) { xmlNsPtr nsPtr = attr_find_ns(node); if (nsPtr) { @@ -213,7 +213,7 @@ int attr_is_equal_ex(xmlAttrPtr node, char *name, char *ns) int node_is_equal_ex(xmlNodePtr node, char *name, char *ns) { - if (name == NULL || strcmp((char*)node->name, name) == 0) { + if (name == NULL || ((node->name) && strcmp((char*)node->name, name) == 0)) { if (ns) { xmlNsPtr nsPtr = node_find_ns(node); if (nsPtr) { |