From: Markus Fischer Date: Tue, 18 Jun 2002 01:51:59 +0000 (+0000) Subject: - Fix ZTS build. X-Git-Tag: php-4.3.0dev_zend2_alpha2~211 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cefd2fe09376ccdfe1b7f0b48331389def9ea50;p=php - Fix ZTS build. --- diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index eafb4822a3..ac4f28af5a 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -1025,7 +1025,7 @@ static zval *php_xmlparser_new(xmlParserCtxtPtr obj, int *found TSRMLS_DC) /* {{{ php_xmlparser_make_params() Translates a PHP array to a xmlparser parameters array */ -static char **php_xmlparser_make_params(zval *idvars) +static char **php_xmlparser_make_params(zval *idvars TSRMLS_DC) { HashTable *parht; int parsize; @@ -4059,7 +4059,7 @@ PHP_FUNCTION(domxml_parser_start_element) DOMXML_PARAM_THREE(parserp, id, le_domxmlparserp,"s|a", &tagname, &tagname_len, ¶ms); if (params != NULL) { - atts = php_xmlparser_make_params(params); + atts = php_xmlparser_make_params(params TSRMLS_CC); } if (parserp->myDoc == NULL) { php_error(E_WARNING, "%s(): Document was not started", get_active_function_name(TSRMLS_C));