From d087a356feae73f223c5fdccd694d7af4e44601a Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 11 Apr 2019 12:22:52 +0200 Subject: [PATCH] Suppress warnings using zend_quiet_write --- Zend/zend_execute_API.c | 2 +- sapi/phpdbg/phpdbg_io.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 56786ae41b5..ab1ef9fa494 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -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); } diff --git a/sapi/phpdbg/phpdbg_io.c b/sapi/phpdbg/phpdbg_io.c index 559ff12a60b..6917daa9d96 100644 --- a/sapi/phpdbg/phpdbg_io.c +++ b/sapi/phpdbg/phpdbg_io.c @@ -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; } }