diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-02 07:35:57 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-02 07:35:57 -0700 |
commit | 7ef09a3af8246fdd17f27855a93803162562acf3 (patch) | |
tree | 389937d954eb5e7c57a7c7180877bef3c0dfa53e /gc.c | |
parent | 6d865f2acdf5f93f06ddd0f4d3ac3a450d36dcd7 (diff) | |
download | txr-7ef09a3af8246fdd17f27855a93803162562acf3.tar.gz txr-7ef09a3af8246fdd17f27855a93803162562acf3.tar.bz2 txr-7ef09a3af8246fdd17f27855a93803162562acf3.zip |
Fix broken finalization support.
* gc.c (call_finals): Correct inverted test for reachability.
The function was processing entries that are still reachable
and calling their finalizers, and retaining unreachable
entries in the finalization list.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -639,7 +639,7 @@ static void call_finals(void) for (f = old_list; f; f = next) { next = f->next; - if ((f->obj_type & REACHABLE) != 0) { + if ((f->obj_type & REACHABLE) == 0) { funcall1(f->fun, f->obj); free(f); } else { |