diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-12 10:55:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-12 10:55:28 (GMT) |
commit | b1e169bf4b8c8c494181724c583f991d3dd66995 (patch) | |
tree | 7a0f414e170b894934e7c6b92c9b07d9b13032fd /Objects/methodobject.c | |
parent | 410b9887e14f6b15c00c10e57537297c3abe45dd (diff) | |
download | cpython-b1e169bf4b8c8c494181724c583f991d3dd66995.zip cpython-b1e169bf4b8c8c494181724c583f991d3dd66995.tar.gz cpython-b1e169bf4b8c8c494181724c583f991d3dd66995.tar.bz2 |
ssue #27213: Reintroduce checks in _PyStack_AsDict()
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r-- | Objects/methodobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c index 90c473e..487ccd7 100644 --- a/Objects/methodobject.c +++ b/Objects/methodobject.c @@ -279,7 +279,7 @@ _PyCFunction_FastCallKeywords(PyObject *func, PyObject **stack, nkwargs = (kwnames == NULL) ? 0 : PyTuple_GET_SIZE(kwnames); if (nkwargs > 0) { - kwdict = _PyStack_AsDict(stack + nargs, kwnames); + kwdict = _PyStack_AsDict(stack + nargs, nkwargs, kwnames, func); if (kwdict == NULL) { return NULL; } |