Commit 9d20fdb4 authored by Yossi Gottlieb's avatar Yossi Gottlieb Committed by antirez
Browse files

fix: missing initialization.

parent ded1980e
...@@ -752,6 +752,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api ...@@ -752,6 +752,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