mirror of
https://github.com/fluencelabs/redis
synced 2025-06-23 22:11:33 +00:00
Removed a useless if spotted by Pieter Noordhuis
This commit is contained in:
3
redis.c
3
redis.c
@ -2437,8 +2437,7 @@ static void readQueryFromClient(aeEventLoop *el, int fd, void *privdata, int mas
|
|||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!(c->flags & REDIS_BLOCKED))
|
processInputBuffer(c);
|
||||||
processInputBuffer(c);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int selectDb(redisClient *c, int id) {
|
static int selectDb(redisClient *c, int id) {
|
||||||
|
Reference in New Issue
Block a user