diff options
Diffstat (limited to 'src/socket.cpp')
-rw-r--r-- | src/socket.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index cd4094727..da78840ea 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -283,7 +283,7 @@ bool InspSocket::FlushWriteBuffer() } else { - std::string temp = outbuffer[0].substr(result + 1,outbuffer[0].length() - result - 1); + std::string temp = outbuffer[0].substr(result); outbuffer[0] = temp; } } @@ -404,6 +404,5 @@ void InspSocket::OnClose() { return; } InspSocket::~InspSocket() { - //outbuffer.clear(); - //this->Close(); + this->Close(); } |