mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
Make bailouts valid at request_startup
This commit is contained in:
parent
eabe8fcf8d
commit
ee19afea96
@ -623,6 +623,10 @@ int php_request_startup(CLS_D ELS_DC PLS_DC SLS_DC)
|
||||
signal(SIGCHLD,sigchld_handler);
|
||||
#endif
|
||||
|
||||
if (setjmp(&EG(bailout))==0) {
|
||||
return FAILURE;
|
||||
}
|
||||
|
||||
PG(during_request_startup) = 1;
|
||||
|
||||
php_output_activate();
|
||||
|
Loading…
Reference in New Issue
Block a user