diff options
author | Brad LaFountain <rodif_bl@php.net> | 2002-08-07 03:03:09 +0000 |
---|---|---|
committer | Brad LaFountain <rodif_bl@php.net> | 2002-08-07 03:03:09 +0000 |
commit | a8326d6f62b25336843a750d72f5461979c75426 (patch) | |
tree | 5dce077ec8fe2459ad9ae7e5eaa7dc091c592377 /ext/soap/php_xml.c | |
parent | f7ac5069b338a709177b16116cf9ad746ea9510c (diff) | |
download | php-git-a8326d6f62b25336843a750d72f5461979c75426.tar.gz |
Sync with Sourceforge CVS
Diffstat (limited to 'ext/soap/php_xml.c')
-rw-r--r-- | ext/soap/php_xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c index 707d073984..e3505e2890 100644 --- a/ext/soap/php_xml.c +++ b/ext/soap/php_xml.c @@ -106,7 +106,7 @@ xmlNodePtr get_node_recurisve_ex(xmlNodePtr node, char *name, char *ns) xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) { - xmlNodePtr trav = node, cur; + xmlNodePtr trav = node, cur = NULL; xmlAttrPtr attr; if(node == NULL) return NULL; |