[Python-checkins] r64365 - python/trunk/Modules/mathmodule.c

raymond.hettinger python-checkins at python.org
Wed Jun 18 02:56:57 CEST 2008


Author: raymond.hettinger
Date: Wed Jun 18 02:56:57 2008
New Revision: 64365

Log:
Fix double decref.

Modified:
   python/trunk/Modules/mathmodule.c

Modified: python/trunk/Modules/mathmodule.c
==============================================================================
--- python/trunk/Modules/mathmodule.c	(original)
+++ python/trunk/Modules/mathmodule.c	Wed Jun 18 02:56:57 2008
@@ -559,7 +559,6 @@
 
 error:
 	Py_DECREF(result);
-	Py_XDECREF(iobj);
 	return NULL;
 }
 


More information about the Python-checkins mailing list