diff options
author | Andi Gutmans <andi@php.net> | 2004-02-12 10:28:33 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2004-02-12 10:28:33 +0000 |
commit | e189d89672167dee73d53ac642c2a85979249d83 (patch) | |
tree | 65973bc30f31d4f45dfcef549398906c9a7f06e5 | |
parent | d9630a595b94e54a1837bf773a3c5f7fade5d75b (diff) | |
download | php-git-e189d89672167dee73d53ac642c2a85979249d83.tar.gz |
- Use zend_throw_exception_object() in throw_handler to make sure it
- does all the checks
-rw-r--r-- | Zend/zend_execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } |