summaryrefslogtreecommitdiffstats
path: root/Objects/methodobject.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-09-12 10:55:28 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-09-12 10:55:28 (GMT)
commitb1e169bf4b8c8c494181724c583f991d3dd66995 (patch)
tree7a0f414e170b894934e7c6b92c9b07d9b13032fd /Objects/methodobject.c
parent410b9887e14f6b15c00c10e57537297c3abe45dd (diff)
downloadcpython-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.c2
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;
}