HTTP error logging fixes

This commit is contained in:
Henrik Rydgård
2025-08-15 18:08:41 +02:00
parent 6c4ff15fce
commit f31a8f08ec
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -387,6 +387,11 @@ int Client::ReadResponseHeaders(net::Buffer *readbuf, std::vector<std::string> &
return -1;
}
if (readbuf->empty()) {
ERROR_LOG(Log::HTTP, "Empty HTTP header read buffer :(");
return -1;
}
// Grab the first header line that contains the http code.
std::string line;