[Python-checkins] r64758 - python/trunk/Modules/_fileio.c

gregory.p.smith python-checkins at python.org
Sun Jul 6 19:06:30 CEST 2008


Author: gregory.p.smith
Date: Sun Jul  6 19:06:29 2008
New Revision: 64758

Log:
fix issue3304 - remove an incorrect PyMem_Free in fileio_init


Modified:
   python/trunk/Modules/_fileio.c

Modified: python/trunk/Modules/_fileio.c
==============================================================================
--- python/trunk/Modules/_fileio.c	(original)
+++ python/trunk/Modules/_fileio.c	Sun Jul  6 19:06:29 2008
@@ -278,7 +278,6 @@
 	ret = -1;
 
  done:
-	PyMem_Free(name);
 	return ret;
 }
 


More information about the Python-checkins mailing list