From e5f257c2b2f7be0d58ebc0cf791d549c647cab6b Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 27 Aug 2010 17:06:36 +0200 Subject: [PATCH] fix for the prev fix --- src/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm.c b/src/vm.c index 6c0d79b0..50fb326d 100644 --- a/src/vm.c +++ b/src/vm.c @@ -566,7 +566,7 @@ void vmThreadedIOCompletedJob(aeEventLoop *el, int fd, void *privdata, REDIS_NOTUSED(mask); REDIS_NOTUSED(privdata); - if (privdata == NULL) trytoswap = 0; /* check the comments above... */ + if (privdata != NULL) trytoswap = 0; /* check the comments above... */ /* For every byte we read in the read side of the pipe, there is one * I/O job completed to process. */ -- 2.45.2