diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-05-19 06:11:02 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-05-19 06:11:02 +0000 |
commit | ab9e070bbfe1bfeb8b6956b0a8967dde329800bc (patch) | |
tree | 49828d593efbf1ffb09ec7cb3ee03f75b7862322 /Zend/zend.c | |
parent | 7324a30e8d90f96d3e0e28d9b6073b3ba894efc8 (diff) | |
download | php-git-ab9e070bbfe1bfeb8b6956b0a8967dde329800bc.tar.gz |
Optimized zend_try/zend_catch macroses (eliminated memcpy())
Diffstat (limited to 'Zend/zend.c')
-rw-r--r-- | Zend/zend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index db3dcf2cea..6afcf6d369 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -1192,14 +1192,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() |