aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-09-12 12:55:28 +0200
committerVictor Stinner <victor.stinner@gmail.com>2016-09-12 12:55:28 +0200
commitb1e169bf4b8c8c494181724c583f991d3dd66995 (patch)
tree7a0f414e170b894934e7c6b92c9b07d9b13032fd /Objects/methodobject.c
parentIssue #27866: Fix refleak in cipher_to_dict() (diff)
downloadcpython-b1e169bf4b8c8c494181724c583f991d3dd66995.tar.gz
cpython-b1e169bf4b8c8c494181724c583f991d3dd66995.tar.bz2
cpython-b1e169bf4b8c8c494181724c583f991d3dd66995.zip
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 90c473ee971..487ccd7a300 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;
}