Skip to content

Commit 1fdffa4

Browse files
committed
Adding missing return statement in a catch block in http_asio_server.cpp.
1 parent c5d2e15 commit 1fdffa4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Release/src/http/listener/http_server_asio.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,7 @@ void connection::handle_body(const boost::system::error_code& ec)
464464
catch (...)
465465
{
466466
m_request._get_impl()->_complete(0, std::current_exception());
467+
return;
467468
}
468469
m_read += writtenSize;
469470
m_request_buf.consume(writtenSize);

0 commit comments

Comments
 (0)