Commit 822a992f authored by Yossi Gottlieb's avatar Yossi Gottlieb
Browse files

fix: missing initialization.

parent 5e8caca0
...@@ -753,6 +753,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api ...@@ -753,6 +753,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api
module->usedby = listCreate(); module->usedby = listCreate();
module->using = listCreate(); module->using = listCreate();
module->filters = listCreate(); module->filters = listCreate();
module->in_call = 0;
ctx->module = module; ctx->module = module;
} }
......
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