summaryrefslogtreecommitdiff
path: root/Zend/zend.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-05-19 06:09:15 +0000
committerDmitry Stogov <dmitry@php.net>2006-05-19 06:09:15 +0000
commit14f6b9149dd8cb1ef7f689afd7d5324746b60d04 (patch)
tree07dd02578b9981191e4965057eac0552e3f21397 /Zend/zend.c
parent95875d996661369faa2647846c8168fed625a961 (diff)
downloadphp-git-14f6b9149dd8cb1ef7f689afd7d5324746b60d04.tar.gz
Optimized zend_try/zend_catch macroses (eliminated memcpy())
Diffstat (limited to 'Zend/zend.c')
-rw-r--r--Zend/zend.c4
1 files changed, 2 insertions, 2 deletions
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()