]> granicus.if.org Git - php/commitdiff
- Fixed ZTS build
authorFelipe Pena <felipe@php.net>
Sun, 19 Jul 2009 14:19:32 +0000 (14:19 +0000)
committerFelipe Pena <felipe@php.net>
Sun, 19 Jul 2009 14:19:32 +0000 (14:19 +0000)
Zend/zend_exceptions.c

index 8a196248543fb50cc841b45033c109f650c543a2..b51d9ae74d858550b75695752a7516b045e10ca4 100644 (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);