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
726abe4d
Unverified
Commit
726abe4d
authored
Feb 03, 2020
by
Salvatore Sanfilippo
Committed by
GitHub
Feb 03, 2020
Browse files
Merge pull request #6824 from oranagra/fix_module_c_uninit_var
fix uninitialized info_cb var in module.c
parents
53ac8c7d
138ed120
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/module.c
View file @
726abe4d
...
@@ -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