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
78eaf503
Commit
78eaf503
authored
Dec 24, 2020
by
xhe
Browse files
address comment
Signed-off-by:
xhe
<
xw897002528@gmail.com
>
parent
f6711b7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/networking.c
View file @
78eaf503
...
...
@@ -2763,15 +2763,16 @@ void helloCommand(client *c) {
long long ver = 0;
int next_arg = 1;
if
(
c
->
argc
>=
2
&&
getLongLongFromObject
(
c
->
argv
[
next_arg
++
],
&
ver
)
==
C_OK
&&
(
ver
<
2
||
ver
>
3
))
{
addReplyError
(
c
,
"-NOPROTO unsupported protocol version"
);
return
;
}
if (c->argc >= 2
) {
if (getLongLongFromObjectOrReply(c, c->argv[next_arg++], &ver,
"The second argument should the protocol version if provided") != C_OK) {
return;
}
if
(
!
ver
&&
next_arg
<
c
->
argc
)
{
addReplyError
(
c
,
"Need to provide an protocol version for other arguments"
);
return
;
if (ver < 2 || ver > 3) {
addReplyError(c,"-NOPROTO unsupported protocol version");
return;
}
}
for (int j = next_arg; j < c->argc; j++) {
...
...
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