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
a8e20345
Commit
a8e20345
authored
Jun 21, 2016
by
Yossi Gottlieb
Browse files
Fix occasional RM_OpenKey() crashes.
parent
0b4b7ebd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/module.c
View file @
a8e20345
...
@@ -1047,6 +1047,7 @@ void *RM_OpenKey(RedisModuleCtx *ctx, robj *keyname, int mode) {
...
@@ -1047,6 +1047,7 @@ void *RM_OpenKey(RedisModuleCtx *ctx, robj *keyname, int mode) {
kp
->
value
=
value
;
kp
->
value
=
value
;
kp
->
iter
=
NULL
;
kp
->
iter
=
NULL
;
kp
->
mode
=
mode
;
kp
->
mode
=
mode
;
kp
->
ztype
=
REDISMODULE_ZSET_RANGE_NONE
;
RM_ZsetRangeStop
(
kp
);
RM_ZsetRangeStop
(
kp
);
autoMemoryAdd
(
ctx
,
REDISMODULE_AM_KEY
,
kp
);
autoMemoryAdd
(
ctx
,
REDISMODULE_AM_KEY
,
kp
);
return
(
void
*
)
kp
;
return
(
void
*
)
kp
;
...
...
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