[Python-checkins] r46086 - python/branches/rjones-funccall/Objects/frameobject.c

richard.jones python-checkins at python.org
Tue May 23 09:57:50 CEST 2006


Author: richard.jones
Date: Tue May 23 09:57:50 2006
New Revision: 46086

Modified:
   python/branches/rjones-funccall/Objects/frameobject.c
Log:
don't try to decref a NULL - thanks Neal

Modified: python/branches/rjones-funccall/Objects/frameobject.c
==============================================================================
--- python/branches/rjones-funccall/Objects/frameobject.c	(original)
+++ python/branches/rjones-funccall/Objects/frameobject.c	Tue May 23 09:57:50 2006
@@ -437,7 +437,7 @@
 	else 
 		PyObject_GC_Del(f);
 
-        Py_DECREF(co);
+        Py_XDECREF(co);
 	Py_TRASHCAN_SAFE_END(f)
 }
 


More information about the Python-checkins mailing list