From 8c700ad546b126668bbc667e7b5834aef5cd8a57 Mon Sep 17 00:00:00 2001 From: Rob Richards Date: Sat, 29 Nov 2003 20:40:54 +0000 Subject: [PATCH] fix ZTS build --- ext/xsl/php_xsl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 3fc272bc94..113c2568f0 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -261,7 +261,7 @@ static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int t php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", Z_STRVAL_P(&handler)); } } else { - if (retval->type == IS_OBJECT && instanceof_function( Z_OBJCE_P(retval), dom_node_class_entry)) { + if (retval->type == IS_OBJECT && instanceof_function( Z_OBJCE_P(retval), dom_node_class_entry TSRMLS_CC)) { xmlNode *nodep; dom_object *obj; obj = (dom_object *)zend_object_store_get_object(retval TSRMLS_CC); -- 2.50.1