fix uninitialized info_cb var in module.c

This commit is contained in:
Oran Agra 2020-02-03 15:58:28 +02:00 committed by antirez
parent 2ad427f862
commit 2ffb9a3682

View File

@ -859,6 +859,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api
module->in_call = 0;
module->in_hook = 0;
module->options = 0;
module->info_cb = 0;
ctx->module = module;
}