pass len to alloc in clusterManagerMigrateKeysInReply

This commit is contained in:
Diego Bendersky 2019-08-05 17:35:50 -03:00
parent 0e9b5adbd3
commit b27f388344

View File

@ -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] = '.';
}