From d9eaa43a028c8fb81f56b46a22687f51e668c490 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 8 Apr 2010 20:18:42 +0200 Subject: [PATCH] last change reverted as it was unstable... more testing needed --- dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dict.c b/dict.c index 7f412796..64e9eacf 100644 --- a/dict.c +++ b/dict.c @@ -519,7 +519,7 @@ void dictEnableResize(void) { } void dictDisableResize(void) { - dict_can_resize = 0; + dict_can_resize = 1; } /* ----------------------- StringCopy Hash Table Type ------------------------*/