diff --git a/Zend/zend_max_execution_timer.c b/Zend/zend_max_execution_timer.c index 005ce14868a..2ef59bbdaac 100644 --- a/Zend/zend_max_execution_timer.c +++ b/Zend/zend_max_execution_timer.c @@ -27,14 +27,13 @@ # include # endif -#include "zend.h" -#include "zend_globals.h" -#include "zend_portability.h" - #if __has_feature(memory_sanitizer) # include #endif +#include "zend.h" +#include "zend_globals.h" + // Musl Libc defines this macro, glibc does not // According to "man 2 timer_create" this field should always be available, but it's not: https://sourceware.org/bugzilla/show_bug.cgi?id=27417 # ifndef sigev_notify_thread_id @@ -68,8 +67,8 @@ ZEND_API void zend_max_execution_timer_init(void) /* {{{ */ #if __has_feature(memory_sanitizer) /* MSan does not intercept timer_create() */ - __msan_unpoison(&EG(max_execution_timer_timer), - sizeof(EG(max_execution_timer_timer))); + __msan_unpoison(&EG(max_execution_timer_timer), + sizeof(EG(max_execution_timer_timer))); #endif // Measure wall time instead of CPU time as originally planned now that it is possible https://github.com/php/php-src/pull/6504#issuecomment-1370303727