[Python-checkins] r45936 - python/trunk/Modules/posixmodule.c

martin.v.loewis python-checkins at python.org
Mon May 8 07:25:57 CEST 2006


Author: martin.v.loewis
Date: Mon May  8 07:25:56 2006
New Revision: 45936

Modified:
   python/trunk/Modules/posixmodule.c
Log:
Add missing PyMem_Free.


Modified: python/trunk/Modules/posixmodule.c
==============================================================================
--- python/trunk/Modules/posixmodule.c	(original)
+++ python/trunk/Modules/posixmodule.c	Mon May  8 07:25:56 2006
@@ -1553,6 +1553,7 @@
 		PyMem_Free(path);
 		return NULL;
 	}
+	PyMem_Free(path);
 	Py_INCREF(Py_None);
 	return Py_None;
 #else /* Py_WIN_WIDE_FILENAMES */


More information about the Python-checkins mailing list