- Make execute() use less stack in thread-safe win32 due to Microsoft's shitty 256kb stack.

This commit is contained in:
Andi Gutmans 1999-06-01 18:47:53 +00:00
parent d57ffd3646
commit c4b7426ec1

View File

@ -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)