Merge pull request #5146 from 0xtonyxia/fix-xclaim-id-parse

Streams: ID of xclaim command should start from the sixth argument.
This commit is contained in:
Salvatore Sanfilippo 2018-08-03 13:45:27 +02:00 committed by GitHub
commit 39c70e728b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2015,7 +2015,7 @@ void xclaimCommand(client *c) {
* the client successfully claimed some message, so it should be
* executed in a "all or nothing" fashion. */
int j;
for (j = 4; j < c->argc; j++) {
for (j = 5; j < c->argc; j++) {
streamID id;
if (streamParseStrictIDOrReply(NULL,c->argv[j],&id,0) != C_OK) break;
}