mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
plug memory leak (closes #14325)
This commit is contained in:
parent
57b2959d26
commit
01feaecbfa
1 changed files with 1 additions and 1 deletions
|
@ -1445,7 +1445,7 @@ vgetargskeywords(PyObject *args, PyObject *keywords, const char *format,
|
||||||
len,
|
len,
|
||||||
(len == 1) ? "" : "s",
|
(len == 1) ? "" : "s",
|
||||||
nargs + nkeywords);
|
nargs + nkeywords);
|
||||||
return 0;
|
return cleanreturn(0, &freelist);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* convert tuple args and keyword args in same loop, using kwlist to drive process */
|
/* convert tuple args and keyword args in same loop, using kwlist to drive process */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue