summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorJoseph Tate <jtate@php.net>2002-03-27 21:45:45 +0000
committerJoseph Tate <jtate@php.net>2002-03-27 21:45:45 +0000
commit113f08bc4bd02e813bcbc1c5883889eec6612953 (patch)
tree68f52aff4fe076dfa8c244f46d51bcf534cbba66 /ext/domxml/php_domxml.c
parent406c665c13bad02f47b0a2e107a6a6ac7d85bcd7 (diff)
downloadphp-git-113f08bc4bd02e813bcbc1c5883889eec6612953.tar.gz
Fixing compile warning under Win32
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 04b95e45ac..6c0a2a4417 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -2382,7 +2382,7 @@ PHP_FUNCTION(domxml_doc_get_elements_by_tagname)
Returns element for given id or false if not found */
PHP_FUNCTION(domxml_doc_get_element_by_id)
{
- zval *id, *rv, *contextnode = NULL, *ctxpin = NULL;
+ zval *id, *rv = NULL, *contextnode = NULL, *ctxpin = NULL;
xmlXPathContextPtr ctxp ;
xmlDocPtr docp;