mirror of https://github.com/python/cpython.git
SF bug 684667: Modules/selectmodule.c returns NULL without exception set.
select_select() didn't set an exception in the SELECT_USES_HEAP case when malloc() returned NULL.
This commit is contained in:
parent
9af48ff44e
commit
5f322d3dfd
|
@ -248,7 +248,7 @@ select_select(PyObject *self, PyObject *args)
|
||||||
if (rfd2obj) PyMem_DEL(rfd2obj);
|
if (rfd2obj) PyMem_DEL(rfd2obj);
|
||||||
if (wfd2obj) PyMem_DEL(wfd2obj);
|
if (wfd2obj) PyMem_DEL(wfd2obj);
|
||||||
if (efd2obj) PyMem_DEL(efd2obj);
|
if (efd2obj) PyMem_DEL(efd2obj);
|
||||||
return NULL;
|
return PyErr_NoMemory();
|
||||||
}
|
}
|
||||||
#endif /* SELECT_USES_HEAP */
|
#endif /* SELECT_USES_HEAP */
|
||||||
/* Convert lists to fd_sets, and get maximum fd number
|
/* Convert lists to fd_sets, and get maximum fd number
|
||||||
|
|
Loading…
Reference in New Issue