From 956107c67964f088f193e09e94cad8f9b112736d Mon Sep 17 00:00:00 2001 From: orignal Date: Tue, 16 Sep 2014 11:18:05 -0400 Subject: [PATCH] don't delete socket twice --- HTTPServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HTTPServer.cpp b/HTTPServer.cpp index c6be0173..62a995cb 100644 --- a/HTTPServer.cpp +++ b/HTTPServer.cpp @@ -531,8 +531,8 @@ namespace util m_Stream->Send ((uint8_t *)m_Buffer, bytes_transferred, 10); Receive (); } - else if (ecode != boost::asio::error::operation_aborted) - Terminate (); + /*else if (ecode != boost::asio::error::operation_aborted) + Terminate ();*/ } void HTTPConnection::RunRequest ()