From e189d89672167dee73d53ac642c2a85979249d83 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Thu, 12 Feb 2004 10:28:33 +0000 Subject: [PATCH] - Use zend_throw_exception_object() in throw_handler to make sure it - does all the checks --- Zend/zend_execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 9313ceb56a..a27ef9cf2c 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -2859,7 +2859,7 @@ int zend_throw_handler(ZEND_OPCODE_HANDLER_ARGS) } INIT_PZVAL(exception); - zend_throw_exception_internal(exception TSRMLS_CC); + zend_throw_exception_object(exception TSRMLS_CC); NEXT_OPCODE(); } -- 2.50.1