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
75d50e5d
Unverified
Commit
75d50e5d
authored
Nov 18, 2021
by
Wen Hui
Committed by
GitHub
Nov 18, 2021
Browse files
Fix module doc - missing function due to blank line (#9807)
parent
0c10f0e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/module.c
View file @
75d50e5d
...
@@ -8435,7 +8435,6 @@ int moduleUnregisterFilters(RedisModule *module) {
...
@@ -8435,7 +8435,6 @@ int moduleUnregisterFilters(RedisModule *module) {
* If multiple filters are registered (by the same or different modules), they
* If multiple filters are registered (by the same or different modules), they
* are executed in the order of registration.
* are executed in the order of registration.
*/
*/
RedisModuleCommandFilter
*
RM_RegisterCommandFilter
(
RedisModuleCtx
*
ctx
,
RedisModuleCommandFilterFunc
callback
,
int
flags
)
{
RedisModuleCommandFilter
*
RM_RegisterCommandFilter
(
RedisModuleCtx
*
ctx
,
RedisModuleCommandFilterFunc
callback
,
int
flags
)
{
RedisModuleCommandFilter
*
filter
=
zmalloc
(
sizeof
(
*
filter
));
RedisModuleCommandFilter
*
filter
=
zmalloc
(
sizeof
(
*
filter
));
filter
->
module
=
ctx
->
module
;
filter
->
module
=
ctx
->
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