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
544bbe53
Commit
544bbe53
authored
Feb 25, 2013
by
antirez
Browse files
Cluster: validate slot number in CLUSTER COUNTKEYSINSLOT.
parent
996a6437
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cluster.c
View file @
544bbe53
...
...
@@ -1645,6 +1645,10 @@ void clusterCommand(redisClient *c) {
if
(
getLongLongFromObjectOrReply
(
c
,
c
->
argv
[
2
],
&
slot
,
NULL
)
!=
REDIS_OK
)
return
;
if
(
slot
<
0
||
slot
>=
REDIS_CLUSTER_SLOTS
)
{
addReplyError
(
c
,
"Invalid slot"
);
return
;
}
addReplyLongLong
(
c
,
countKeysInSlot
(
slot
));
}
else
if
(
!
strcasecmp
(
c
->
argv
[
1
]
->
ptr
,
"getkeysinslot"
)
&&
c
->
argc
==
4
)
{
long
long
maxkeys
,
slot
;
...
...
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