mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
pass len to alloc in clusterManagerMigrateKeysInReply
This commit is contained in:
parent
0e9b5adbd3
commit
b27f388344
@ -3222,7 +3222,7 @@ static redisReply *clusterManagerMigrateKeysInReply(clusterManagerNode *source,
|
||||
redisReply *entry = reply->element[i];
|
||||
size_t idx = i + offset;
|
||||
assert(entry->type == REDIS_REPLY_STRING);
|
||||
argv[idx] = (char *) sdsnew(entry->str);
|
||||
argv[idx] = (char *) sdsnewlen(entry->str, entry->len);
|
||||
argv_len[idx] = entry->len;
|
||||
if (dots) dots[i] = '.';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user