From defb5f66a090c614aa70aee9e1923ec571e0e911 Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 11 May 2011 09:49:23 +0200 Subject: [PATCH] removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations. --- src/t_list.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/t_list.c b/src/t_list.c index adb0c409..7c1b848a 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 */ -- 2.47.2