]> granicus.if.org Git - python/commitdiff
Merged revisions 85982 via svnmerge from
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 31 Oct 2010 13:05:21 +0000 (13:05 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 31 Oct 2010 13:05:21 +0000 (13:05 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85982 | antoine.pitrou | 2010-10-30 18:19:14 +0200 (sam., 30 oct. 2010) | 4 lines

  Issue #10253: FileIO leaks a file descriptor when trying to open a file
  for append that isn't seekable.  Patch by Brian Brazil.
........

Lib/test/test_fileio.py
Misc/NEWS
Modules/_io/fileio.c

index fa305da42a291ed69981f2b72ef5d59f4790b951..e9281e33fa288174bfe9c220f60ed74e4d602ffd 100644 (file)
@@ -342,6 +342,7 @@ class OtherFileTests(unittest.TestCase):
         f.truncate(15)
         self.assertEqual(f.tell(), 5)
         self.assertEqual(f.seek(0, os.SEEK_END), 15)
+        f.close()
 
     def testTruncateOnWindows(self):
         def bug801631():
index a1b5246f7fcb701eb3924b7b977f2e5395afbf36..ce29e40d1c773c7f583271041679d411dde93d6b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -143,6 +143,9 @@ C-API
 Library
 -------
 
+- Issue #10253: FileIO leaks a file descriptor when trying to open a file
+  for append that isn't seekable.  Patch by Brian Brazil.
+
 - Issue #5027: The standard ``xml`` namespace is now understood by
   xml.sax.saxutils.XMLGenerator as being bound to
   http://www.w3.org/XML/1998/namespace.  Patch by Troy J. Farrell.
index f332ee4633372500b530be445cce4070937894f7..a365c9fe46c2c196c9f10b6110e93bf08c7fe743 100644 (file)
@@ -364,8 +364,13 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
            end of file (otherwise, it might be done only on the
            first write()). */
         PyObject *pos = portable_lseek(self->fd, NULL, 2);
-        if (pos == NULL)
+        if (pos == NULL) {
+            if (closefd) {
+                close(self->fd);
+                self->fd = -1;
+            }
             goto error;
+        }
         Py_DECREF(pos);
     }