bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)

Also, add a missing call to va_end() in PySys_Audit().
This commit is contained in:
Zackery Spytz 2019-06-21 09:31:59 -06:00 committed by Steve Dower
parent 08970cb03c
commit 08286d52b2
5 changed files with 13 additions and 1 deletions

View file

@ -1154,7 +1154,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
}
if (PySys_Audit("mmap.__new__", "ini" _Py_PARSE_OFF_T,
fileno, map_size, access, offset) < 0) {
fd, map_size, access, offset) < 0) {
return NULL;
}