summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-11-18 10:51:15 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-11-18 10:51:15 -0800
commit6d2bc0b88c6f0060bce5c79ee5879cf4ce77a35f (patch)
treee99dd6f7fec514671f6815db79971eec0641b059 /hash.c
parentf55237951cd029bdfe40346c52060a8ed59bb49e (diff)
downloadtxr-6d2bc0b88c6f0060bce5c79ee5879cf4ce77a35f.tar.gz
txr-6d2bc0b88c6f0060bce5c79ee5879cf4ce77a35f.tar.bz2
txr-6d2bc0b88c6f0060bce5c79ee5879cf4ce77a35f.zip
Added a JSON parsing test case. This flushed out a bug which crashed
the garbage collector (uninitialized fields in function objects). * Makefile: Defined TXR_ARGS and TXR_OPTS for new test case. * hash.c (hash_begin): Construction of cobj modified to obey the correct procedure described in HACKING. * lib.c (func_n3, func_n4): These functions neglected to initialize the env member of the function structure. * tests/009/json.expected: New file. * tests/009/json.txr: New file. * tests/009/webapp.json: New file.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index 7ee39d43..86b7a2f5 100644
--- a/hash.c
+++ b/hash.c
@@ -359,11 +359,14 @@ static struct cobj_ops hash_iter_ops = {
val hash_begin(val hash)
{
+ val hi_obj;
struct hash_iter *hi = (struct hash_iter *) chk_malloc(sizeof *hi);
- hi->hash = hash;
+ hi->hash = nil;
hi->chain = -1;
hi->cons = nil;
- return cobj((mem_t *) hi, hash_iter_s, &hash_iter_ops);
+ hi_obj = cobj((mem_t *) hi, hash_iter_s, &hash_iter_ops);
+ hi->hash = hash;
+ return hi_obj;
}
val hash_next(val *iter)