diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-19 15:59:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-19 15:59:36 (GMT) |
commit | 61b8e940f38feeb23035e67f2b79c433417cb088 (patch) | |
tree | 799649a23961cc604fa6383ed3e7fd50810303af /Modules | |
parent | f5def21ce7c826deae66bdc7ebb3b3e5ea8dd09d (diff) | |
download | cpython-61b8e940f38feeb23035e67f2b79c433417cb088.zip cpython-61b8e940f38feeb23035e67f2b79c433417cb088.tar.gz cpython-61b8e940f38feeb23035e67f2b79c433417cb088.tar.bz2 |
Merged revisions 68755 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68755 | benjamin.peterson | 2009-01-18 18:08:08 -0600 (Sun, 18 Jan 2009) | 1 line
raise an OSError for invalid fds #4991
........
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_fileio.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 2dc3d74..0f09ecd 100644 --- a/Modules/_fileio.c +++ b/Modules/_fileio.c @@ -119,6 +119,24 @@ dircheck(PyFileIOObject* self, char *name) return 0; } +static int +check_fd(int fd) +{ +#if defined(HAVE_FSTAT) + struct stat buf; + if (fstat(fd, &buf) < 0 && errno == EBADF) { + PyObject *exc; + char *msg = strerror(EBADF); + exc = PyObject_CallFunction(PyExc_OSError, "(is)", + EBADF, msg); + PyErr_SetObject(PyExc_OSError, exc); + Py_XDECREF(exc); + return -1; + } +#endif + return 0; +} + static int fileio_init(PyObject *oself, PyObject *args, PyObject *kwds) @@ -151,6 +169,8 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds) "Negative filedescriptor"); return -1; } + if (check_fd(fd)) + return -1; } else { PyErr_Clear(); |