summaryrefslogtreecommitdiffstats
path: root/Objects/frameobject.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-02-09 11:33:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-02-09 11:33:53 (GMT)
commit505ff755d704c73ac613d3e8fed02c79c6ae555a (patch)
treeb9b0142cbeca125a1bcf0413e48d938d0cd390d3 /Objects/frameobject.c
parente9c31470e1680b7c9b9ee83c378b891e90ac58ab (diff)
downloadcpython-505ff755d704c73ac613d3e8fed02c79c6ae555a.zip
cpython-505ff755d704c73ac613d3e8fed02c79c6ae555a.tar.gz
cpython-505ff755d704c73ac613d3e8fed02c79c6ae555a.tar.bz2
Issue #20437: Fixed 21 potential bugs when deleting objects references.
Diffstat (limited to 'Objects/frameobject.c')
-rw-r--r--Objects/frameobject.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 808e595..b312130 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -952,8 +952,7 @@ void
PyFrame_Fini(void)
{
(void)PyFrame_ClearFreeList();
- Py_XDECREF(builtin_object);
- builtin_object = NULL;
+ Py_CLEAR(builtin_object);
}
/* Print summary info about the state of the optimized allocator */