From a83a728b91e3274ec5d367fa33b6f86b2292670d Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 3 May 2005 20:12:47 +0000 Subject: Fix annoying off-by-one error in connection::RecvPacket (nothing like driving to calm the mind :p) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1298 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connection.cpp') diff --git a/src/connection.cpp b/src/connection.cpp index debd3144f..6302b1e7e 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -509,7 +509,7 @@ bool connection::RecvPacket(std::deque &messages, char* recvhost) int ret = poll(&polls,1,1); if (ret <= 0) continue; - rcvsize = recv(this->connectors[i].GetDescriptor(),data,4096,0); + rcvsize = recv(this->connectors[i].GetDescriptor(),data,4090,0); data[rcvsize] = '\0'; if (rcvsize == -1) { -- cgit v1.2.3