rrichards Sat Nov 29 15:40:55 2003 EDT
Modified files:
/php-src/ext/xsl php_xsl.c
Log:
fix ZTS build
Index: php-src/ext/xsl/php_xsl.c
diff -u php-src/ext/xsl/php_xsl.c:1.13 php-src/ext/xsl/php_xsl.c:1.14
--- php-src/ext/xsl/php_xsl.c:1.13 Sat Nov 29 11:37:37 2003
+++ php-src/ext/xsl/php_xsl.c Sat Nov 29 15:40:54 2003
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_xsl.c,v 1.13 2003/11/29 16:37:37 chregu Exp $ */
+/* $Id: php_xsl.c,v 1.14 2003/11/29 20:40:54 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -261,7 +261,7 @@
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);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php