diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-07-06 16:52:58 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-07-06 16:52:58 (GMT) |
commit | 7d7f40c6131fee07fdae3c43ce4d7ef80c6dc650 (patch) | |
tree | d165ced64d5d4667b3c0a66f6315bb93d1787664 /Modules | |
parent | 5cf896fea8005478bcc2bcd6e10e4572ae5fe2be (diff) | |
parent | 9235b254dcad979abe36be1024f8e89b04c764be (diff) | |
download | cpython-7d7f40c6131fee07fdae3c43ce4d7ef80c6dc650.zip cpython-7d7f40c6131fee07fdae3c43ce4d7ef80c6dc650.tar.gz cpython-7d7f40c6131fee07fdae3c43ce4d7ef80c6dc650.tar.bz2 |
Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_io/fileio.c | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 198392f..6e0bbee 100644 --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -169,22 +169,15 @@ fileio_new(PyTypeObject *type, PyObject *args, PyObject *kwds) directories, so we need a check. */ static int -dircheck(fileio* self, const char *name) +dircheck(fileio* self, PyObject *nameobj) { #if defined(HAVE_FSTAT) && defined(S_IFDIR) && defined(EISDIR) struct stat buf; if (self->fd < 0) return 0; if (fstat(self->fd, &buf) == 0 && S_ISDIR(buf.st_mode)) { - char *msg = strerror(EISDIR); - PyObject *exc; - if (internal_close(self)) - return -1; - - exc = PyObject_CallFunction(PyExc_IOError, "(iss)", - EISDIR, msg, name); - PyErr_SetObject(PyExc_IOError, exc); - Py_XDECREF(exc); + errno = EISDIR; + PyErr_SetFromErrnoWithFilenameObject(PyExc_IOError, nameobj); return -1; } #endif @@ -406,9 +399,9 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds) PyErr_SetFromErrnoWithFilename(PyExc_IOError, name); goto error; } - if (dircheck(self, name) < 0) - goto error; } + if (dircheck(self, nameobj) < 0) + goto error; #if defined(MS_WINDOWS) || defined(__CYGWIN__) /* don't translate newlines (\r\n <=> \n) */ |