From 2ec374aea7bd1b2c878124ecdbb49bceab85465b Mon Sep 17 00:00:00 2001 From: Eduard Bagdasaryan Date: Sun, 17 Jul 2016 21:03:05 +1200 Subject: [PATCH] Cleanup: drop redundant parse buffer check --- src/client_side.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/client_side.cc b/src/client_side.cc index 952ecaafed..9b2329517c 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -2141,10 +2141,6 @@ ConnStateData::clientParseRequests() // On errors, bodyPipe may become nil, but readMore will be cleared while (!inBuf.isEmpty() && !bodyPipe && flags.readMore) { - /* Don't try to parse if the buffer is empty */ - if (inBuf.isEmpty()) - break; - /* Limit the number of concurrent requests */ if (concurrentRequestQueueFilled()) break; -- 2.47.2