summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/hellocluster.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/hellocluster.c b/src/modules/hellocluster.c
index cb78187f9..ac04f9560 100644
--- a/src/modules/hellocluster.c
+++ b/src/modules/hellocluster.c
@@ -77,7 +77,8 @@ void PingReceiver(RedisModuleCtx *ctx, const char *sender_id, uint8_t type, cons
RedisModule_Log(ctx,"notice","PING (type %d) RECEIVED from %.*s: '%.*s'",
type,REDISMODULE_NODE_ID_LEN,sender_id,(int)len, payload);
RedisModule_SendClusterMessage(ctx,NULL,MSGTYPE_PONG,(unsigned char*)"Ohi!",4);
- RedisModule_Call(ctx, "INCR", "c", "pings_received");
+ RedisModuleCallReply *reply = RedisModule_Call(ctx, "INCR", "c", "pings_received");
+ RedisModule_FreeCallReply(reply);
}
/* Callback for message MSGTYPE_PONG. */