closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH-14414)

This commit is contained in:
Brandt Bucher 2019-06-27 09:10:57 -07:00 committed by Benjamin Peterson
parent 97d15b1ee0
commit 45a30af109
3 changed files with 6 additions and 0 deletions

View file

@ -6413,6 +6413,9 @@ os_sched_setaffinity_impl(PyObject *module, pid_t pid, PyObject *mask)
}
CPU_SET_S(cpu, setsize, cpu_set);
}
if (PyErr_Occurred()) {
goto error;
}
Py_CLEAR(iterator);
if (sched_setaffinity(pid, setsize, cpu_set)) {