mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Fix stack limit on MSAN (#14829)
This commit is contained in:
parent
1a380989ee
commit
a62eda3f88
@ -214,7 +214,7 @@ static ZEND_INI_MH(OnUpdateReservedStackSize) /* {{{ */
|
||||
zend_ulong min = 32*1024;
|
||||
#endif
|
||||
|
||||
#ifdef __SANITIZE_ADDRESS__
|
||||
#if defined(__SANITIZE_ADDRESS__) || __has_feature(memory_sanitizer)
|
||||
/* AddressSanitizer and MemorySanitizer use more stack due to
|
||||
* instrumentation */
|
||||
min *= 10;
|
||||
|
Loading…
Reference in New Issue
Block a user