Commit dddfde85 authored by antirez's avatar antirez
Browse files

Modules hooks: fix memory leak in example module.

parent 61ac2aef
...@@ -63,6 +63,7 @@ void flushdbCallback(RedisModuleCtx *ctx, RedisModuleEvent e, uint64_t sub, void ...@@ -63,6 +63,7 @@ void flushdbCallback(RedisModuleCtx *ctx, RedisModuleEvent e, uint64_t sub, void
long long numkeys = RedisModule_CallReplyInteger(reply); long long numkeys = RedisModule_CallReplyInteger(reply);
printf("FLUSHDB event of database %d started (%lld keys in DB)\n", printf("FLUSHDB event of database %d started (%lld keys in DB)\n",
fi->dbnum, numkeys); fi->dbnum, numkeys);
RedisModule_FreeCallReply(reply);
} else { } else {
printf("FLUSHALL event started\n"); printf("FLUSHALL event started\n");
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment