summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-02 07:35:57 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-02 07:35:57 -0700
commit7ef09a3af8246fdd17f27855a93803162562acf3 (patch)
tree389937d954eb5e7c57a7c7180877bef3c0dfa53e /gc.c
parent6d865f2acdf5f93f06ddd0f4d3ac3a450d36dcd7 (diff)
downloadtxr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index d524c984..f17a4b47 100644
--- a/gc.c
+++ b/gc.c
@@ -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 {