diff options
author | Sascha Schumann <sas@php.net> | 2000-10-29 16:14:27 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-10-29 16:14:27 +0000 |
commit | af87dfe204d4418951071d102ef15b1b26db2aa2 (patch) | |
tree | 472723f6377cc3e5a3e1652954f61265cf443dff /sapi/isapi/php4isapi.c | |
parent | bed7034f920d7560fa7635a922f578db528d88d3 (diff) | |
download | php-git-af87dfe204d4418951071d102ef15b1b26db2aa2.tar.gz |
Unify handling of aborted connections
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r-- | sapi/isapi/php4isapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index b776b9b5a6..1985bd63c9 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -151,7 +151,7 @@ static int sapi_isapi_ub_write(const char *str, uint str_length) ecb = (LPEXTENSION_CONTROL_BLOCK) SG(server_context); if (ecb->WriteClient(ecb->ConnID, (char *) str, &num_bytes, HSE_IO_SYNC ) == FALSE) { - zend_bailout(); + php_handle_aborted_connection(); } return num_bytes; } |