mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix stack limit on MSAN (#14829)
This commit is contained in:
parent
1a380989ee
commit
a62eda3f88
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ static ZEND_INI_MH(OnUpdateReservedStackSize) /* {{{ */
|
||||||
zend_ulong min = 32*1024;
|
zend_ulong min = 32*1024;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __SANITIZE_ADDRESS__
|
#if defined(__SANITIZE_ADDRESS__) || __has_feature(memory_sanitizer)
|
||||||
/* AddressSanitizer and MemorySanitizer use more stack due to
|
/* AddressSanitizer and MemorySanitizer use more stack due to
|
||||||
* instrumentation */
|
* instrumentation */
|
||||||
min *= 10;
|
min *= 10;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue