diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 22:34:30 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 22:34:30 -0800 |
commit | 5355a54c26f6fbf6ac7a6fd74877f9ef71ab53e5 (patch) | |
tree | 25ff998dbad1a69be23fa52e1e65a1546e4d5a23 /hash.c | |
parent | fbec2eb30da83f77f0f25edf0b3e3f9b6da07e07 (diff) | |
download | txr-5355a54c26f6fbf6ac7a6fd74877f9ef71ab53e5.tar.gz txr-5355a54c26f6fbf6ac7a6fd74877f9ef71ab53e5.tar.bz2 txr-5355a54c26f6fbf6ac7a6fd74877f9ef71ab53e5.zip |
Fix uninitialized memory locations.
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -235,6 +235,7 @@ val make_hash(val weak_keys, val weak_vals) h->flags = (hash_flags_t) flags; h->modulus = c_num(mod); + h->count = 0; h->table = table; return hash; |