summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-05-11 09:49:23 +0200
committerantirez <antirez@gmail.com>2011-05-11 09:49:23 +0200
commitf7aef5241ba79674023284e4544554ca86e6d713 (patch)
tree8e451c484eabe54670de5ee5aba9e572384cee70
parentc86a4f9102da988eaa9eeea113391e956824031f (diff)
downloadredis-f7aef5241ba79674023284e4544554ca86e6d713.tar.gz
removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations.
-rw-r--r--src/t_list.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/t_list.c b/src/t_list.c
index 47c927db7..b85cd2c1c 100644
--- a/src/t_list.c
+++ b/src/t_list.c
@@ -817,7 +817,6 @@ int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele) {
/* This should remove the first element of the "clients" list. */
unblockClientWaitingData(receiver);
- redisAssert(ln != listFirst(clients));
if (dstkey == NULL) {
/* BRPOP/BLPOP */