From: Joseph Tate Date: Wed, 27 Mar 2002 21:45:45 +0000 (+0000) Subject: Fixing compile warning under Win32 X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1008 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=113f08bc4bd02e813bcbc1c5883889eec6612953;p=php Fixing compile warning under Win32 --- 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;