mirror of
https://github.com/python/cpython.git
synced 2026-05-06 12:49:07 -04:00
gh-104372: use == -1 before PyErr_Occurred (#104831)
The ideal pattern for this. (already in the 3.11 backport)
This commit is contained in:
@@ -200,7 +200,7 @@ convert_fds_to_keep_to_c(PyObject *py_fds_to_keep, int *c_fds_to_keep)
|
||||
for (i = 0; i < len; ++i) {
|
||||
PyObject* fdobj = PyTuple_GET_ITEM(py_fds_to_keep, i);
|
||||
long fd = PyLong_AsLong(fdobj);
|
||||
if (PyErr_Occurred()) {
|
||||
if (fd == -1 && PyErr_Occurred()) {
|
||||
return -1;
|
||||
}
|
||||
if (fd < 0 || fd > INT_MAX) {
|
||||
|
||||
Reference in New Issue
Block a user