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 6fe55c2f29
commit ec0c61da05

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;
}