From: antirez Date: Fri, 24 Aug 2012 10:10:24 +0000 (+0200) Subject: Sentinel: fixed a crash on script execution. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/fc0a0d4aa7019f725de3f424fe3558b30d7f27d3 Sentinel: fixed a crash on script execution. The call to sentinelScheduleScriptExecution() lacked the final NULL argument to signal the end of arguments. This resulted into a crash. --- diff --git a/src/sentinel.c b/src/sentinel.c index 36bf2337..dda8008e 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -789,7 +789,7 @@ void sentinelCallClientReconfScript(sentinelRedisInstance *master, int role, cha sentinelScheduleScriptExecution(master->client_reconfig_script, master->name, (role == SENTINEL_LEADER) ? "leader" : "observer", - state, from->ip, fromport, to->ip, toport); + state, from->ip, fromport, to->ip, toport, NULL); } /* ========================== sentinelRedisInstance ========================= */