From ed3c85261b2318f21e59a3aa7986b2529986e3f7 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Thu, 31 Aug 2000 16:15:31 +0000 Subject: [PATCH] Make main.c compile again --- main/main.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/main/main.c b/main/main.c index a6afda0064..e7626e81a8 100644 --- a/main/main.c +++ b/main/main.c @@ -636,15 +636,15 @@ void php_request_shutdown(void *dummy) SLS_FETCH(); PLS_FETCH(); - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { sapi_send_headers(); } - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { php_end_ob_buffers(SG(request_info).headers_only?0:1); } - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { php_call_shutdown_functions(); } @@ -652,25 +652,25 @@ void php_request_shutdown(void *dummy) zend_deactivate_modules(); } - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { php_ini_rshutdown(); } zend_deactivate(CLS_C ELS_CC); - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { sapi_deactivate(SLS_C); } - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { shutdown_memory_manager(CG(unclean_shutdown), 0); } - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { zend_unset_timeout(); } - if (setjmp(EG(bailout)==0) { + if (setjmp(EG(bailout))==0) { global_unlock(); } } -- 2.50.1