mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
s/_alloca/alloca/g; Windows doesn't need the former, at least not unless
__STDC__ is defined (or something like that ...).
This commit is contained in:
parent
0f345567fe
commit
92e4dd8657
2 changed files with 5 additions and 5 deletions
|
@ -1450,9 +1450,9 @@ int
|
|||
PyOS_CheckStack(void)
|
||||
{
|
||||
__try {
|
||||
/* _alloca throws a stack overflow exception if there's
|
||||
/* alloca throws a stack overflow exception if there's
|
||||
not enough space left on the stack */
|
||||
_alloca(PYOS_STACK_MARGIN * sizeof(void*));
|
||||
alloca(PYOS_STACK_MARGIN * sizeof(void*));
|
||||
return 0;
|
||||
} __except (EXCEPTION_EXECUTE_HANDLER) {
|
||||
/* just ignore all errors */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue