From: antirez Date: Tue, 28 Aug 2012 10:56:05 +0000 (+0200) Subject: Sentinel: suppress harmless warning by initializing 'table' to NULL. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/c14e0ecafdaa6b72464d6bcb8953b22899230406?ds=inline Sentinel: suppress harmless warning by initializing 'table' to NULL. Note that the assertion guarantees that one of the if branches setting table is always entered. --- diff --git a/src/sentinel.c b/src/sentinel.c index 1a70cdbf..e683279b 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -818,7 +818,7 @@ void sentinelCallClientReconfScript(sentinelRedisInstance *master, int role, cha sentinelRedisInstance *createSentinelRedisInstance(char *name, int flags, char *hostname, int port, int quorum, sentinelRedisInstance *master) { sentinelRedisInstance *ri; sentinelAddr *addr; - dict *table; + dict *table = NULL; char slavename[128], *sdsname; redisAssert(flags & (SRI_MASTER|SRI_SLAVE|SRI_SENTINEL));