From 7cefd2fe09376ccdfe1b7f0b48331389def9ea50 Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Tue, 18 Jun 2002 01:51:59 +0000 Subject: [PATCH] - Fix ZTS build. --- ext/domxml/php_domxml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index eafb4822a3ab3..ac4f28af5ae88 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));