mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
- Make execute() use less stack in thread-safe win32 due to Microsoft's shitty 256kb stack.
This commit is contained in:
parent
d57ffd3646
commit
c4b7426ec1
@ -806,7 +806,7 @@ static void call_overloaded_function(int arg_count, zval *return_value, HashTabl
|
||||
}
|
||||
|
||||
|
||||
#if HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)
|
||||
#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && (WINNT|WIN32))
|
||||
# define free_alloca(p)
|
||||
#else
|
||||
# define alloca(p) emalloc(p)
|
||||
|
Loading…
Reference in New Issue
Block a user