plug memory leak (closes #14325)

This commit is contained in:
Benjamin Peterson 2012-03-16 13:25:58 -05:00
parent 57b2959d26
commit 01feaecbfa
1 changed files with 1 additions and 1 deletions

View File

@ -1445,7 +1445,7 @@ vgetargskeywords(PyObject *args, PyObject *keywords, const char *format,
len,
(len == 1) ? "" : "s",
nargs + nkeywords);
return 0;
return cleanreturn(0, &freelist);
}
/* convert tuple args and keyword args in same loop, using kwlist to drive process */