[Python-checkins] commit of r41487 - python/branches/release24-maint/Python

neal.norwitz@python.org neal.norwitz at python.org
Mon Nov 21 01:05:59 CET 2005


Author: neal.norwitz
Date: Mon Nov 21 01:05:58 2005
New Revision: 41487

Modified:
   python/branches/release24-maint/Python/modsupport.c
Log:
Backport one of the ref/memory leaks

Modified: python/branches/release24-maint/Python/modsupport.c
==============================================================================
--- python/branches/release24-maint/Python/modsupport.c	(original)
+++ python/branches/release24-maint/Python/modsupport.c	Mon Nov 21 01:05:58 2005
@@ -82,6 +82,7 @@
 			}
 			Py_DECREF(v);
 		}
+		Py_DECREF(n);
 	}
 	if (doc != NULL) {
 		v = PyString_FromString(doc);


More information about the Python-checkins mailing list