fix: missing initialization.

This commit is contained in:
Yossi Gottlieb 2019-03-24 12:00:33 +02:00
parent 5e8caca036
commit 822a992f91
3 changed files with 1 additions and 0 deletions

View File

@ -753,6 +753,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api
module->usedby = listCreate();
module->using = listCreate();
module->filters = listCreate();
module->in_call = 0;
ctx->module = module;
}