Unverified Commit 39c70e72 authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo Committed by GitHub
Browse files

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

Streams: ID of xclaim command should start from the sixth argument.
parents 7b5e7f3e de5ca516
...@@ -2015,7 +2015,7 @@ void xclaimCommand(client *c) { ...@@ -2015,7 +2015,7 @@ void xclaimCommand(client *c) {
* the client successfully claimed some message, so it should be * the client successfully claimed some message, so it should be
* executed in a "all or nothing" fashion. */ * executed in a "all or nothing" fashion. */
int j; int j;
for (j = 4; j < c->argc; j++) { for (j = 5; j < c->argc; j++) {
streamID id; streamID id;
if (streamParseStrictIDOrReply(NULL,c->argv[j],&id,0) != C_OK) break; if (streamParseStrictIDOrReply(NULL,c->argv[j],&id,0) != C_OK) break;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment