From 9e0ad17dc46c1b23de7f363b7739e33254eebf34 Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 10 Aug 2001 08:02:09 +0000 Subject: [PATCH] compile fix (missing TSRMLS_CC) --- ext/domxml/php_domxml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1