diff options
author | antirez <antirez@gmail.com> | 2011-05-11 09:49:23 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2011-05-11 09:50:57 +0200 |
commit | defb5f66a090c614aa70aee9e1923ec571e0e911 (patch) | |
tree | 19dba09eaf260c06238da625b565bfb39fb12d29 /src/t_list.c | |
parent | 6b52ad87c05ca2162a2d21f1f5b5329bf52a7678 (diff) | |
download | redis-defb5f66a090c614aa70aee9e1923ec571e0e911.tar.gz |
removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations.
Diffstat (limited to 'src/t_list.c')
-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 adb0c409e..7c1b848a8 100644 --- a/src/t_list.c +++ b/src/t_list.c @@ -822,7 +822,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 */ |