From dacadf5aa36cc8e90accc05eb5d8a8d9fe231db2 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 7 Nov 2019 13:08:03 +0100 Subject: [PATCH] Disable ifunc resolvers under thread sanitizer as well --- Zend/zend_portability.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_portability.h b/Zend/zend_portability.h index 1e549d300b..dd518aebbb 100644 --- a/Zend/zend_portability.h +++ b/Zend/zend_portability.h @@ -523,7 +523,7 @@ static zend_always_inline double _zend_get_nan(void) /* {{{ */ /* Memory sanitizer is incompatible with ifunc resolvers. Even if the resolver * is marked as no_sanitize("memory") it will still be instrumented and crash. */ -#if __has_feature(memory_sanitizer) +#if __has_feature(memory_sanitizer) || __has_feature(thread_sanitizer) # undef HAVE_FUNC_ATTRIBUTE_IFUNC #endif -- 2.40.0