diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-07-06 17:06:29 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-07-06 17:06:29 (GMT) |
commit | eb77fe4cbf4bdb275f22c658ed820c34a9a0b12c (patch) | |
tree | f251bea5b35bbcf592c09ff7abf6c97aff731e12 | |
parent | 7f58022219b0cfcb6e1442cbcf7bb3a85dd09134 (diff) | |
download | cpython-eb77fe4cbf4bdb275f22c658ed820c34a9a0b12c.zip cpython-eb77fe4cbf4bdb275f22c658ed820c34a9a0b12c.tar.gz cpython-eb77fe4cbf4bdb275f22c658ed820c34a9a0b12c.tar.bz2 |
fix issue3304 - remove an incorrect PyMem_Free in fileio_init
-rw-r--r-- | Modules/_fileio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 1cb697b..21608f1 100644 --- a/Modules/_fileio.c +++ b/Modules/_fileio.c @@ -278,7 +278,6 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds) ret = -1; done: - PyMem_Free(name); return ret; } |