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
76c59f0e
Commit
76c59f0e
authored
Mar 14, 2019
by
antirez
Browse files
Fix ZPOP return type when COUNT=0. Related to #5799.
parent
1c636714
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_zset.c
View file @
76c59f0e
...
...
@@ -3145,7 +3145,7 @@ void genericZpopCommand(client *c, robj **keyv, int keyc, int where, int emitkey
if (getLongFromObjectOrReply(c,countarg,&count,NULL) != C_OK)
return;
if (count <= 0) {
addReply
NullArray(c
);
addReply
(c,shared.emptymultibulk
);
return;
}
}
...
...
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