From: Hampus Wessman Date: Wed, 7 Sep 2011 17:08:48 +0000 (+0200) Subject: Fix crash when chaining brpoplpush with other blocking commands. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/c47d152c8d96415de1af994b1a4bb3e0347caef3?ds=inline Fix crash when chaining brpoplpush with other blocking commands. --- diff --git a/src/t_list.c b/src/t_list.c index 5427293f..279bcaf5 100644 --- a/src/t_list.c +++ b/src/t_list.c @@ -643,7 +643,7 @@ void lremCommand(redisClient *c) { void rpoplpushHandlePush(redisClient *origclient, redisClient *c, robj *dstkey, robj *dstobj, robj *value) { robj *aux; - if (!handleClientsWaitingListPush(c,dstkey,value)) { + if (!handleClientsWaitingListPush(origclient,dstkey,value)) { /* Create the list if the key does not exist */ if (!dstobj) { dstobj = createZiplistObject();