diff options
author | Markus Fischer <mfischer@php.net> | 2002-06-18 01:51:59 +0000 |
---|---|---|
committer | Markus Fischer <mfischer@php.net> | 2002-06-18 01:51:59 +0000 |
commit | 7cefd2fe09376ccdfe1b7f0b48331389def9ea50 (patch) | |
tree | 7281ff3701f5a3559b551be085d903c1de04671a /ext/domxml/php_domxml.c | |
parent | cff4039c4761c42306508e66a044e86cdf3c779f (diff) | |
download | php-git-7cefd2fe09376ccdfe1b7f0b48331389def9ea50.tar.gz |
- Fix ZTS build.
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 4 |
1 files changed, 2 insertions, 2 deletions
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)); |