diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-11 21:39:48 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-11 21:39:48 +0000 |
commit | 6bc6dacf5c0bf413f0659b2d716b4fb6c905ac7b (patch) | |
tree | 1aa9db41d1c0ef37f0f921ae6fb766e09aeca24a /Zend/zend.c | |
parent | e22cce0dda0ba1b5786651535bd46e8d0fb52398 (diff) | |
download | php-git-6bc6dacf5c0bf413f0659b2d716b4fb6c905ac7b.tar.gz |
Fixes:
* Avoid closing stdin (I could have sworn I've committed that already)
* unclean_shutdown patches
Diffstat (limited to 'Zend/zend.c')
-rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index ef436f8940..f9b0640d09 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -322,8 +322,10 @@ void zenderror(char *error) ZEND_API void zend_bailout() { + CLS_FETCH(); ELS_FETCH(); + CG(unclean_shutdown) = 1; longjmp(EG(bailout), FAILURE); } |