Commit a577230a authored by antirez's avatar antirez
Browse files

RESP3: Use new deferred len API in t_string.c.

parent 07bce540
......@@ -285,7 +285,7 @@ void getrangeCommand(client *c) {
void mgetCommand(client *c) {
int j;
addReplyMultiBulkLen(c,c->argc-1);
addReplyArrayLen(c,c->argc-1);
for (j = 1; j < c->argc; j++) {
robj *o = lookupKeyRead(c->db,c->argv[j]);
if (o == NULL) {
......
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