summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-07-06 17:06:29 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-07-06 17:06:29 (GMT)
commiteb77fe4cbf4bdb275f22c658ed820c34a9a0b12c (patch)
treef251bea5b35bbcf592c09ff7abf6c97aff731e12
parent7f58022219b0cfcb6e1442cbcf7bb3a85dd09134 (diff)
downloadcpython-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.c1
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;
}