Skip to content

Commit c4cd68f

Browse files
committed
yet another missing _
1 parent b0e695f commit c4cd68f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ _Py_InitializeRecursionLimits(PyThreadState *tstate)
360360
ULONG guarantee = 0;
361361
SetThreadStackGuarantee(&guarantee);
362362
_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;
363+
_tstate->c_stack_soft_limit = _tstate->c_stack_hard_limit + PYOS_STACK_MARGIN_BYTES;
364364
#else
365365
char here;
366366
uintptr_t here_addr = (uintptr_t)&here;

0 commit comments

Comments
 (0)