From: Gregory P. Smith Date: Sun, 6 Jul 2008 17:06:29 +0000 (+0000) Subject: fix issue3304 - remove an incorrect PyMem_Free in fileio_init X-Git-Tag: v2.6b2~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb77fe4cbf4bdb275f22c658ed820c34a9a0b12c;p=thirdparty%2FPython%2Fcpython.git fix issue3304 - remove an incorrect PyMem_Free in fileio_init --- diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 1cb697bb3906..21608f1ef1ad 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; }