From b567d3694c647455bfe9908696af10dcccb339cd Mon Sep 17 00:00:00 2001 From: RuiliF <77563179+RuiliF@users.noreply.github.com> Date: Fri, 19 Nov 2021 17:48:08 -0500 Subject: fix memory leak in example module hellocluster (#9813) Missing RedisModule_FreeCallReply --- src/modules/hellocluster.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/modules') 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. */ -- cgit v1.2.1