Commit defb5f66 authored by antirez's avatar antirez
Browse files

removed assert causing an illegal memory access. This was responsible of...

removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations.
parent 6b52ad87
......@@ -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 */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment