From 1e2b6354bea11c067745a456ed372fbaa5245ec2 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 22 Feb 2012 03:38:11 -0800 Subject: * lib.c (init): Hash bugfix: added missing call to hash_init. Previously this function did nothing, but now it interns some important symbols. --- ChangeLog | 6 ++++++ lib.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 63434df7..9da05664 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-02-22 Kaz Kylheku + + * lib.c (init): Hash bugfix: added missing call to hash_init. + Previously this function did nothing, but now it interns + some important symbols. + 2012-02-22 Kaz Kylheku * hash.c (remhash): Rewrote buggy function. diff --git a/lib.c b/lib.c index 66f123db..35395a7c 100644 --- a/lib.c +++ b/lib.c @@ -4204,6 +4204,7 @@ void init(const wchar_t *pn, mem_t *(*oom)(mem_t *, size_t), stream_init(); eval_init(); filter_init(); + hash_init(); gc_state(gc_save); } -- cgit v1.2.3