summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorMarkus Fischer <mfischer@php.net>2002-06-18 01:51:59 +0000
committerMarkus Fischer <mfischer@php.net>2002-06-18 01:51:59 +0000
commit7cefd2fe09376ccdfe1b7f0b48331389def9ea50 (patch)
tree7281ff3701f5a3559b551be085d903c1de04671a /ext/domxml/php_domxml.c
parentcff4039c4761c42306508e66a044e86cdf3c779f (diff)
downloadphp-git-7cefd2fe09376ccdfe1b7f0b48331389def9ea50.tar.gz
- Fix ZTS build.
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c4
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, &params);
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));