Skip to content

Commit

Permalink
removed assert causing an illegal memory access. This was responsible…
Browse files Browse the repository at this point in the history
… of crashes during BLPOP and other list blocking operations.
  • Loading branch information
antirez committed May 11, 2011
1 parent c86a4f9 commit f7aef52
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/t_list.c
Expand Up @@ -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 */
Expand Down

0 comments on commit f7aef52

Please sign in to comment.