From 5be2a814873dadc5e7e457cc35780f8b6765d3db Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Wed, 5 Dec 2007 10:33:05 +0100 Subject: [PATCH] HashTables: The allocator should be initialized before we make the initial array allocation. --- lib/hashtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hashtable.h b/lib/hashtable.h index 4dc223fe..5002f806 100644 --- a/lib/hashtable.h +++ b/lib/hashtable.h @@ -401,8 +401,8 @@ static void P(init) (TA) #else T.hash_hard_max = 1 << 28; #endif - P(alloc_table)(TT); P(init_alloc)(TT); + P(alloc_table)(TT); } #ifdef HASH_WANT_CLEANUP -- 2.39.5