mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Reenable alloca support on ZTS
This got disabled due to an incorrect change in a preprocessor condition
in 2104bea5d7
. It was not supposed to
be disabled.
This commit is contained in:
parent
1e4cc5bf0b
commit
77a0fa101e
@ -355,7 +355,7 @@ char *alloca();
|
||||
|
||||
#endif
|
||||
|
||||
#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS)) && !(defined(ZTS) && defined(HPUX)) && !defined(DARWIN)
|
||||
#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && defined(HPUX)) && !defined(DARWIN)
|
||||
# define ZEND_ALLOCA_MAX_SIZE (32 * 1024)
|
||||
# define ALLOCA_FLAG(name) \
|
||||
zend_bool name;
|
||||
|
Loading…
Reference in New Issue
Block a user