mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
A lot of cleanups... Removed old thread-safe code and other redundant code and files
This commit is contained in:
parent
05d24c6022
commit
0818d96c97
55 changed files with 499 additions and 2219 deletions
4
output.c
4
output.c
|
|
@ -197,8 +197,8 @@ static int zend_ub_body_write(const char *str, uint str_length)
|
|||
|
||||
static int zend_apache_ub_write(const char *str, uint str_length)
|
||||
{
|
||||
if (GLOBAL(php3_rqst)) {
|
||||
return rwrite(str, str_length, GLOBAL(php3_rqst));
|
||||
if (php3_rqst) {
|
||||
return rwrite(str, str_length, php3_rqst);
|
||||
} else {
|
||||
return fwrite(str, 1, str_length, stdout);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue