From: Dmitry Stogov Date: Mon, 20 Oct 2014 08:51:02 +0000 (+0400) Subject: fixed compilation error X-Git-Tag: POST_NATIVE_TLS_MERGE^2~49^2~45^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1480d26fb926ef67746a3a3c70c940a0d9055072;p=php fixed compilation error --- diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index f9c1a509a6..4159a46d3c 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -90,7 +90,7 @@ ZEND_API void zend_throw_exception_internal(zval *exception TSRMLS_DC) /* {{{ */ #ifdef HAVE_DTRACE if (DTRACE_EXCEPTION_THROWN_ENABLED()) { if (exception != NULL) { - DTRACE_EXCEPTION_THROWN(Z_OBJ_P(exception)->ce->val); + DTRACE_EXCEPTION_THROWN(Z_OBJ_P(exception)->ce->name->val); } else { DTRACE_EXCEPTION_THROWN(NULL); }