[Python-checkins] r50575 - python/trunk/Mac/Modules/macosmodule.c

thomas.heller python-checkins at python.org
Tue Jul 11 18:42:06 CEST 2006


Author: thomas.heller
Date: Tue Jul 11 18:42:05 2006
New Revision: 50575

Modified:
   python/trunk/Mac/Modules/macosmodule.c
Log:
Add missing Py_DECREF.

Modified: python/trunk/Mac/Modules/macosmodule.c
==============================================================================
--- python/trunk/Mac/Modules/macosmodule.c	(original)
+++ python/trunk/Mac/Modules/macosmodule.c	Tue Jul 11 18:42:05 2006
@@ -375,6 +375,7 @@
 				/* And try again... */
 				h = GetResource('Estr', err);
 			}
+			Py_DECREF(m);
 		}
 	}
 	/*


More information about the Python-checkins mailing list