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

This commit is contained in:
antirez 2018-11-08 17:54:50 +01:00
parent 470c28380f
commit cdd10193c5

View File

@ -1324,7 +1324,7 @@ badfmt: /* Bad format errors */
void configGetCommand(client *c) {
robj *o = c->argv[2];
void *replylen = addDeferredMultiBulkLength(c);
void *replylen = addReplyDeferredLen(c);
char *pattern = o->ptr;
char buf[128];
int matches = 0;
@ -1571,7 +1571,7 @@ void configGetCommand(client *c) {
sdsfree(aux);
matches++;
}
setDeferredMultiBulkLength(c,replylen,matches*2);
setDeferredMapLen(c,replylen,matches);
}
/*-----------------------------------------------------------------------------