diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-05-19 06:09:15 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-05-19 06:09:15 +0000 |
commit | 14f6b9149dd8cb1ef7f689afd7d5324746b60d04 (patch) | |
tree | 07dd02578b9981191e4965057eac0552e3f21397 /main/main.c | |
parent | 95875d996661369faa2647846c8168fed625a961 (diff) | |
download | php-git-14f6b9149dd8cb1ef7f689afd7d5324746b60d04.tar.gz |
Optimized zend_try/zend_catch macroses (eliminated memcpy())
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 9335f3dc73..c22071632f 100644 --- a/main/main.c +++ b/main/main.c @@ -1437,7 +1437,7 @@ int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_mod ts_allocate_id(&core_globals_id, sizeof(php_core_globals), (ts_allocate_ctor) core_globals_ctor, NULL); core_globals = ts_resource(core_globals_id); #endif - EG(bailout_set) = 0; + EG(bailout) = NULL; EG(error_reporting) = E_ALL & ~E_NOTICE; PG(header_is_being_sent) = 0; |