From 14f6b9149dd8cb1ef7f689afd7d5324746b60d04 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 19 May 2006 06:09:15 +0000 Subject: Optimized zend_try/zend_catch macroses (eliminated memcpy()) --- Zend/zend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Zend/zend.c') diff --git a/Zend/zend.c b/Zend/zend.c index d52b43a9fb..b445e34090 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -760,14 +760,14 @@ ZEND_API void _zend_bailout(char *filename, uint lineno) { TSRMLS_FETCH(); - if (!EG(bailout_set)) { + if (!EG(bailout)) { zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno); exit(-1); } CG(unclean_shutdown) = 1; CG(in_compilation) = EG(in_execution) = 0; EG(current_execute_data) = NULL; - longjmp(EG(bailout), FAILURE); + longjmp(*EG(bailout), FAILURE); } END_EXTERN_C() -- cgit v1.2.1