diff options
author | antirez <antirez@gmail.com> | 2011-05-11 09:49:23 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2011-05-11 09:49:23 +0200 |
commit | f7aef5241ba79674023284e4544554ca86e6d713 (patch) | |
tree | 8e451c484eabe54670de5ee5aba9e572384cee70 | |
parent | c86a4f9102da988eaa9eeea113391e956824031f (diff) | |
download | redis-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.c | 1 |
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 */ |