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:
Tim Peters 2003-02-11 17:18:58 +00:00
parent 9af48ff44e
commit 5f322d3dfd
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ select_select(PyObject *self, PyObject *args)
if (rfd2obj) PyMem_DEL(rfd2obj);
if (wfd2obj) PyMem_DEL(wfd2obj);
if (efd2obj) PyMem_DEL(efd2obj);
return NULL;
return PyErr_NoMemory();
}
#endif /* SELECT_USES_HEAP */
/* Convert lists to fd_sets, and get maximum fd number