diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-11-18 13:27:18 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-11-18 13:27:18 -0800 |
commit | 469c98066160e682eda0fd2ba7a189e388ab9257 (patch) | |
tree | 38fca8299308a1d4e3ed1f83a8b0048bc0d05999 /lib.c | |
parent | 6d2bc0b88c6f0060bce5c79ee5879cf4ce77a35f (diff) | |
download | txr-469c98066160e682eda0fd2ba7a189e388ab9257.tar.gz txr-469c98066160e682eda0fd2ba7a189e388ab9257.tar.bz2 txr-469c98066160e682eda0fd2ba7a189e388ab9257.zip |
* gc.c (mark_mem_region): Use the Valgrind API only to mark
the type field as accessible, not the whole object that
we are checking. Marking the whole object accessible hides
uninitialized field bugs!
* lib.c: And found a bug already: lazy_str was not completely
initializing all of the object fields (ls.prefix, ls.list)
before invoking memory allocating operations, making it
possible for the garbage collector to encounter uninitialized
object areas.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1853,7 +1853,9 @@ val lazy_str(val lst, val term, val limit) { val obj = make_obj(); obj->ls.type = LSTR; - obj->ls.opts = nil; /* Must init before calling something that can gc! */ + + /* Must init before calling something that can gc! */ + obj->ls.opts = obj->ls.list = obj->ls.prefix = nil; term = or2(term, string(L"\n")); |