mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
Suppress warnings using zend_quiet_write
This commit is contained in:
parent
30df87f77d
commit
d087a356fe
@ -1176,7 +1176,7 @@ static void zend_timeout_handler(int dummy) /* {{{ */
|
||||
|
||||
output_len = snprintf(log_buffer, sizeof(log_buffer), "\nFatal error: Maximum execution time of " ZEND_LONG_FMT "+" ZEND_LONG_FMT " seconds exceeded (terminated) in %s on line %d\n", EG(timeout_seconds), EG(hard_timeout), error_filename, error_lineno);
|
||||
if (output_len > 0) {
|
||||
write(2, log_buffer, MIN(output_len, sizeof(log_buffer)));
|
||||
zend_quiet_write(2, log_buffer, MIN(output_len, sizeof(log_buffer)));
|
||||
}
|
||||
_exit(124);
|
||||
}
|
||||
|
@ -208,7 +208,7 @@ static int phpdbg_output_pager(int sock, const char *ptr, int len) {
|
||||
if (*buf == 'q') {
|
||||
break;
|
||||
}
|
||||
write(sock, "\r", 1);
|
||||
zend_quiet_write(sock, "\r", 1);
|
||||
} else break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user