Commit 0bb502dc authored by Antoine Pitrou's avatar Antoine Pitrou

Merged revisions 84506 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84506 | antoine.pitrou | 2010-09-04 22:53:29 +0200 (sam., 04 sept. 2010) | 5 lines

  Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
  descriptor is provided.  Patch by Pascal Chambon.
........
parent ec804789
...@@ -313,6 +313,9 @@ class OtherFileTests(unittest.TestCase): ...@@ -313,6 +313,9 @@ class OtherFileTests(unittest.TestCase):
def testInvalidFd(self): def testInvalidFd(self):
self.assertRaises(ValueError, _FileIO, -10) self.assertRaises(ValueError, _FileIO, -10)
self.assertRaises(OSError, _FileIO, make_bad_fd()) self.assertRaises(OSError, _FileIO, make_bad_fd())
if sys.platform == 'win32':
import msvcrt
self.assertRaises(IOError, msvcrt.get_osfhandle, make_bad_fd())
def testBadModeArgument(self): def testBadModeArgument(self):
# verify that we get a sensible error message for bad mode argument # verify that we get a sensible error message for bad mode argument
......
...@@ -477,6 +477,9 @@ Library ...@@ -477,6 +477,9 @@ Library
Extension Modules Extension Modules
----------------- -----------------
- Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
descriptor is provided. Patch by Pascal Chambon.
- Issue #7736: Release the GIL around calls to opendir() and closedir() - Issue #7736: Release the GIL around calls to opendir() and closedir()
in the posix module. Patch by Marcin Bachry. in the posix module. Patch by Marcin Bachry.
......
...@@ -143,6 +143,9 @@ msvcrt_get_osfhandle(PyObject *self, PyObject *args) ...@@ -143,6 +143,9 @@ msvcrt_get_osfhandle(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args,"i:get_osfhandle", &fd)) if (!PyArg_ParseTuple(args,"i:get_osfhandle", &fd))
return NULL; return NULL;
if (!_PyVerify_fd(fd))
return PyErr_SetFromErrno(PyExc_IOError);
handle = _get_osfhandle(fd); handle = _get_osfhandle(fd);
if (handle == -1) if (handle == -1)
return PyErr_SetFromErrno(PyExc_IOError); return PyErr_SetFromErrno(PyExc_IOError);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment