X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/d288ee655fef467a7c1f14a13af9485f5c0c0862..a2b3fff23535d41b7bce6e4fac1bb5b6f4f15355:/src/networking.c?ds=sidebyside diff --git a/src/networking.c b/src/networking.c index c0dd4d0d..a352ba76 100644 --- a/src/networking.c +++ b/src/networking.c @@ -90,8 +90,7 @@ redisClient *createClient(int fd) { c->obuf_soft_limit_reached_time = 0; listSetFreeMethod(c->reply,decrRefCount); listSetDupMethod(c->reply,dupClientReplyValue); - c->bpop.keys = NULL; - c->bpop.count = 0; + c->bpop.keys = dictCreate(&setDictType,NULL); c->bpop.timeout = 0; c->bpop.target = NULL; c->io_keys = listCreate();