From e2e62d3afb921923aecdb49a42bf4d3b57ea7bbb Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sun, 19 Jul 2009 14:19:32 +0000 Subject: [PATCH] - Fixed ZTS build --- Zend/zend_exceptions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 8a19624854..b51d9ae74d 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -89,7 +89,7 @@ void zend_throw_exception_internal(zval *exception TSRMLS_DC) /* {{{ */ int name_len, s_classname_len; classname = NULL_ZSTR; - zend_get_object_classname(exception, &classname, &name_len); + zend_get_object_classname(exception, &classname, &name_len TSRMLS_CC); zend_unicode_to_string(ZEND_U_CONVERTER(UG(utf8_conv)), &s_classname, &s_classname_len, classname.u, u_strlen(classname.u) TSRMLS_CC); DTRACE_EXCEPTION_THROWN(s_classname); -- 2.50.1