]> granicus.if.org Git - php/commitdiff
- Fix bug #55471, fix zts build with dtrace (Laruense)
authorPierre Joye <pajoye@php.net>
Sun, 21 Aug 2011 11:51:00 +0000 (11:51 +0000)
committerPierre Joye <pajoye@php.net>
Sun, 21 Aug 2011 11:51:00 +0000 (11:51 +0000)
Zend/zend_exceptions.c

index 8db4c7633d7da981777bc3348aaa92d4e4247169..1ec8eece4ac819bcf0ace425a850e58f322b2946 100644 (file)
@@ -89,7 +89,8 @@ void zend_throw_exception_internal(zval *exception TSRMLS_DC) /* {{{ */
                int name_len;
 
                if (exception != NULL) {
-                       zend_get_object_classname(exception, &classname, &name_len);
+                       zend_get_object_classname(exception, &classname, &name_len TSRMLS_CC);
+                       
                        DTRACE_EXCEPTION_THROWN(classname);
                } else {
                        DTRACE_EXCEPTION_THROWN(NULL);