From c3d60fd7ff81d0604803868ccdaa74376dbee0bc Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 23 Aug 2003 19:48:52 +0000 Subject: Allow zend_throw_exception() to also set the exception code --- ext/reflection/php_reflection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/reflection/php_reflection.c') diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 2710e83518..278cd3fb76 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -47,7 +47,7 @@ /* Exception throwing macro */ #define _DO_THROW(msg) \ - zend_throw_exception(msg, 1 TSRMLS_CC); \ + zend_throw_exception(msg, 0 TSRMLS_CC); \ return; \ /* Smart string macros */ -- cgit v1.2.1