diff options
author | foobar <sniper@php.net> | 2001-08-10 08:02:09 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-08-10 08:02:09 +0000 |
commit | 9e0ad17dc46c1b23de7f363b7739e33254eebf34 (patch) | |
tree | 00ce613be57272f4caa9a052ec594f7ba12ee5c8 /ext/domxml/php_domxml.c | |
parent | 52e3b4a44f39ef39dd4d21010a8ba09d8b80f797 (diff) | |
download | php-git-9e0ad17dc46c1b23de7f363b7739e33254eebf34.tar.gz |
compile fix (missing TSRMLS_CC)
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 476fdf44a1..8f8309dc56 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -2519,7 +2519,7 @@ static void php_xpathptr_eval(INTERNAL_FUNCTION_PARAMETERS, int mode, int expr) convert_to_string(str); if (contextnode) { - contextnodep = php_dom_get_object(contextnode, le_domxmlnodep, 0); + contextnodep = php_dom_get_object(contextnode, le_domxmlnodep, 0 TSRMLS_CC); } ctxp->node = contextnodep; |