diff options
author | Ken Jin <kenjin@python.org> | 2024-09-26 02:41:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 02:41:07 +0800 |
commit | 198756b0f653e9f487076df2c6f943e374def6cb (patch) | |
tree | 016fc150fd8997388d91ee13866eaf8b8c99bd41 /Python/bytecodes.c | |
parent | c1600c78e4565b6bb558ade451abe2648ba4dd0a (diff) | |
download | cpython-198756b0f653e9f487076df2c6f943e374def6cb.tar.gz cpython-198756b0f653e9f487076df2c6f943e374def6cb.zip |
gh-117376: Fix off-by-ones in conversion functions (GH-124301)
Fix off-by-ones in conversion function
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index bf8f6af83fc..0fd396f1319 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -3928,7 +3928,7 @@ dummy_func( PyCFunctionFastWithKeywords cfunc = (PyCFunctionFastWithKeywords)(void(*)(void))meth->ml_meth; - STACKREFS_TO_PYOBJECTS(args, nargs, args_o); + STACKREFS_TO_PYOBJECTS(args, total_args, args_o); if (CONVERSION_FAILED(args_o)) { DECREF_INPUTS(); ERROR_IF(true, error); @@ -4009,7 +4009,7 @@ dummy_func( (PyCFunctionFast)(void(*)(void))meth->ml_meth; int nargs = total_args - 1; - STACKREFS_TO_PYOBJECTS(args, nargs, args_o); + STACKREFS_TO_PYOBJECTS(args, total_args, args_o); if (CONVERSION_FAILED(args_o)) { DECREF_INPUTS(); ERROR_IF(true, error); |