From 7feb90fa3709a612c272dc1fb0a239752c8c6bbd Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 14 Sep 2011 19:09:48 +0200 Subject: [PATCH] enable zmalloc thread safety support now that we have the bio.c background thread. --- src/redis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/redis.c b/src/redis.c index 94ca17f5..268398f0 100644 --- a/src/redis.c +++ b/src/redis.c @@ -1729,6 +1729,7 @@ void redisAsciiArt(void) { int main(int argc, char **argv) { long long start; + zmalloc_enable_thread_safeness(); initServerConfig(); if (argc == 2) { if (strcmp(argv[1], "-v") == 0 ||