summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-04-28 06:54:43 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-04-28 06:54:43 -0700
commit08a31065f8eb9d234cbbaac69d05c7ab7edf22c5 (patch)
tree77cfc555a90f2a4b576554a3e2373eaea9471e97 /lib.c
parent9e7a995846bf23cf9e24ebb9a5bcdc15de478f21 (diff)
downloadtxr-08a31065f8eb9d234cbbaac69d05c7ab7edf22c5.tar.gz
txr-08a31065f8eb9d234cbbaac69d05c7ab7edf22c5.tar.bz2
txr-08a31065f8eb9d234cbbaac69d05c7ab7edf22c5.zip
seq-iter: gc issue.
* lib.c (seq_iter_mark): The default case checks the type of the wrong object. The seq_iter object is necessarily a cobjp, and necessarily not a obj_struct_p so the test is always false, and we do not call gc_mark(si->ui.iter). The check must be applied to the object being iterated.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 2f0f9859..82869026 100644
--- a/lib.c
+++ b/lib.c
@@ -903,7 +903,7 @@ static void seq_iter_mark(val seq_iter)
gc_mark(si->ui.iter);
break;
default:
- if (cobjp(seq_iter) && obj_struct_p(seq_iter))
+ if (cobjp(si->inf.obj) && obj_struct_p(si->inf.obj))
gc_mark(si->ui.iter);
break;
}