diff options
author | madmaxoft <github@xoft.cz> | 2013-08-22 08:17:26 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-22 08:17:26 +0200 |
commit | 16e3242456249508c16a025fa4fc95d1a73a4e7f (patch) | |
tree | 74bb39818a261d844903aaa39bd59201852f3212 | |
parent | Updated Core and ProtectionAreas to their latest versions. (diff) | |
download | cuberite-16e3242456249508c16a025fa4fc95d1a73a4e7f.tar cuberite-16e3242456249508c16a025fa4fc95d1a73a4e7f.tar.gz cuberite-16e3242456249508c16a025fa4fc95d1a73a4e7f.tar.bz2 cuberite-16e3242456249508c16a025fa4fc95d1a73a4e7f.tar.lz cuberite-16e3242456249508c16a025fa4fc95d1a73a4e7f.tar.xz cuberite-16e3242456249508c16a025fa4fc95d1a73a4e7f.tar.zst cuberite-16e3242456249508c16a025fa4fc95d1a73a4e7f.zip |
-rw-r--r-- | source/ClientHandle.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/ClientHandle.cpp b/source/ClientHandle.cpp index dda6a6ed2..ed76ee086 100644 --- a/source/ClientHandle.cpp +++ b/source/ClientHandle.cpp @@ -1287,6 +1287,12 @@ void cClientHandle::HandleTabCompletion(const AString & a_Text) void cClientHandle::SendData(const char * a_Data, int a_Size) { + if (m_HasSentDC) + { + // This could crash the client, because they've already unloaded the world etc., and suddenly a wild packet appears (#31) + return; + } + { cCSLock Lock(m_CSOutgoingData); |