From 3d61cb0cb18a34bc537f5b4b98adb963a6911923 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 18 Dec 2015 16:19:47 +0100 Subject: Suppress harmless warnings. --- src/cluster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index 05d7baa6c..8f07772e0 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -4743,7 +4743,7 @@ try_again: /* Read the RESTORE replies. */ int error_from_target = 0; int del_idx = 1; /* Index of the key argument for the replicated DEL op. */ - robj **newargv; + robj **newargv = NULL; if (!copy) newargv = zmalloc(sizeof(robj*)*(num_keys+1)); -- cgit v1.2.1