Added a missing return statement in HTTPReader::Read
This commit is contained in:
parent
1d1519111f
commit
bdc4b194df
1 changed files with 1 additions and 0 deletions
|
@ -334,6 +334,7 @@ bool HTTP::Parser::Read(Socket::Connection & conn){
|
|||
if (conn.Received().size()){
|
||||
return Read(conn);
|
||||
}
|
||||
return false;
|
||||
} //HTTPReader::Read
|
||||
|
||||
/// Attempt to read a whole HTTP request or response from a std::string buffer.
|
||||
|
|
Loading…
Add table
Reference in a new issue