From: Pieter Noordhuis Date: Tue, 15 Jun 2010 19:16:56 +0000 (+0200) Subject: fix BLPOP/BRPOP to use the wrapped function for list length X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/676740a960dda1cf1adfad908628708057bf4e22?ds=inline fix BLPOP/BRPOP to use the wrapped function for list length --- diff --git a/redis.c b/redis.c index f6a765da..1e1cd781 100644 --- a/redis.c +++ b/redis.c @@ -8236,8 +8236,7 @@ static void blockingPopGenericCommand(redisClient *c, int where) { addReply(c,shared.wrongtypeerr); return; } else { - list *list = o->ptr; - if (listLength(list) != 0) { + if (listTypeLength(o) != 0) { /* If the list contains elements fall back to the usual * non-blocking POP operation */ robj *argv[2], **orig_argv;