1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00

- Fixed ZTS build

This commit is contained in:
Felipe Pena
2009-07-19 14:19:32 +00:00
parent 28f7ed9365
commit e2e62d3afb

View File

@@ -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);