Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
ec0c61da
Commit
ec0c61da
authored
Feb 03, 2020
by
Oran Agra
Committed by
antirez
Feb 04, 2020
Browse files
fix uninitialized info_cb var in module.c
parent
6fe55c2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/module.c
View file @
ec0c61da
...
@@ -859,6 +859,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api
...
@@ -859,6 +859,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api
module
->
in_call
=
0
;
module
->
in_call
=
0
;
module
->
in_hook
=
0
;
module
->
in_hook
=
0
;
module
->
options
=
0
;
module
->
options
=
0
;
module
->
info_cb
=
0
;
ctx
->
module
=
module
;
ctx
->
module
=
module
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment