Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
b27f3883
Commit
b27f3883
authored
Aug 05, 2019
by
Diego Bendersky
Browse files
pass len to alloc in clusterManagerMigrateKeysInReply
parent
0e9b5adb
Changes
1
Show whitespace changes
Inline
Side-by-side
src/redis-cli.c
View file @
b27f3883
...
@@ -3222,7 +3222,7 @@ static redisReply *clusterManagerMigrateKeysInReply(clusterManagerNode *source,
...
@@ -3222,7 +3222,7 @@ static redisReply *clusterManagerMigrateKeysInReply(clusterManagerNode *source,
redisReply *entry = reply->element[i];
redisReply *entry = reply->element[i];
size_t idx = i + offset;
size_t idx = i + offset;
assert(entry->type == REDIS_REPLY_STRING);
assert(entry->type == REDIS_REPLY_STRING);
argv[idx] = (char *) sdsnew(entry->str);
argv[idx] = (char *) sdsnew
len
(entry->str
, entry->len
);
argv_len[idx] = entry->len;
argv_len[idx] = entry->len;
if (dots) dots[i] = '.';
if (dots) dots[i] = '.';
}
}
...
...
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