diff options
author | Tim Peters <tim@python.org> | 2014-05-08 22:42:19 (GMT) |
---|---|---|
committer | Tim Peters <tim@python.org> | 2014-05-08 22:42:19 (GMT) |
commit | 5fbc7b12f776109678dc34fdb49b420750a3e5ff (patch) | |
tree | bfd1be75cbf62cc59f5b65e13cfc5239b1b1d220 /Misc | |
parent | c644e7c39f7adf0ed783e128b0278665133bf523 (diff) | |
download | cpython-5fbc7b12f776109678dc34fdb49b420750a3e5ff.zip cpython-5fbc7b12f776109678dc34fdb49b420750a3e5ff.tar.gz cpython-5fbc7b12f776109678dc34fdb49b420750a3e5ff.tar.bz2 |
Issue #21435: Segfault in gc with cyclic trash
Changed the iteration logic in finalize_garbage() to tolerate objects vanishing
from the list as a side effect of executing a finalizer.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -7,6 +7,13 @@ What's New in Python 3.4.1? Release date: TBA +Core and Builtins +----------------- + +- Issue #21435: In rare cases, when running finalizers on objects in cyclic + trash a bad pointer dereference could occur due to a subtle flaw in + internal iteration logic. + Library ------- |