diff options
author | Robert Lu <robberphex@gmail.com> | 2018-06-15 14:08:49 +0800 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-06-19 12:15:33 +0200 |
commit | ecc1a7c582bf8de1eaa619ac4451399ed58f502a (patch) | |
tree | cab80d06cfce2bb6c462e44ce08f867266d5bdc0 /UPGRADING.INTERNALS | |
parent | 84d7d4e1cc49e657068ddd6f2c57a93165ffb1a5 (diff) | |
download | php-git-ecc1a7c582bf8de1eaa619ac4451399ed58f502a.tar.gz |
Fix bug #44217: Output after stdout/stderr closed cause immediate exit with status 0
We exit with status 255 instead.
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r-- | UPGRADING.INTERNALS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index e77fc0b9d0..173729c3e1 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -17,6 +17,7 @@ PHP 7.3 INTERNALS UPGRADE NOTES n. IS_TYPE_COPYABLE o. IS_UNUSED p. VM instruction operands (FETCH_CLASS, FETCH_CONSTANT, CATCH) + q. sapi_cli_single_write() 2. Build system changes a. Unix build system changes @@ -123,6 +124,8 @@ PHP 7.3 INTERNALS UPGRADE NOTES - FETCH_CONSTANT op1<fetch-flags>, op2<name>, result<tmp> - CATCH ext<last-flag>, op1<name>, op2<jump_addr>, result<cv> + q. sapi_cli_single_write() now returns ssize_t instead of size_t. + ======================== 2. Build system changes ======================== |