diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-04-28 06:54:43 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-04-28 06:54:43 -0700 |
commit | 08a31065f8eb9d234cbbaac69d05c7ab7edf22c5 (patch) | |
tree | 77cfc555a90f2a4b576554a3e2373eaea9471e97 /lib.c | |
parent | 9e7a995846bf23cf9e24ebb9a5bcdc15de478f21 (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |