We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0e695f commit c4cd68fCopy full SHA for c4cd68f
Python/ceval.c
@@ -360,7 +360,7 @@ _Py_InitializeRecursionLimits(PyThreadState *tstate)
360
ULONG guarantee = 0;
361
SetThreadStackGuarantee(&guarantee);
362
_tstate->c_stack_hard_limit = ((uintptr_t)low) + guarantee + PYOS_STACK_MARGIN_BYTES;
363
- _tstate->c_stack_soft_limit = tstate->c_stack_hard_limit + PYOS_STACK_MARGIN_BYTES;
+ _tstate->c_stack_soft_limit = _tstate->c_stack_hard_limit + PYOS_STACK_MARGIN_BYTES;
364
#else
365
char here;
366
uintptr_t here_addr = (uintptr_t)&here;
0 commit comments