Removed a useless if spotted by Pieter Noordhuis

This commit is contained in:
antirez 2010-03-26 11:21:11 +01:00
parent 248ea31003
commit 168ac5c6e3

View File

@ -2437,8 +2437,7 @@ static void readQueryFromClient(aeEventLoop *el, int fd, void *privdata, int mas
} else {
return;
}
if (!(c->flags & REDIS_BLOCKED))
processInputBuffer(c);
processInputBuffer(c);
}
static int selectDb(redisClient *c, int id) {