Commit 168ac5c6 authored by antirez's avatar antirez
Browse files

Removed a useless if spotted by Pieter Noordhuis

parent 248ea310
......@@ -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) {
......
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