diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2015-06-18 12:19:41 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2015-06-18 12:19:41 +0200 |
commit | 6920e468ad91e99bc16b9bf77ff59aff9d736826 (patch) | |
tree | 45950750727f24e3d13d526254f6f6faca87ce14 | |
parent | Fixes #2245 (diff) | |
download | cuberite-6920e468ad91e99bc16b9bf77ff59aff9d736826.tar cuberite-6920e468ad91e99bc16b9bf77ff59aff9d736826.tar.gz cuberite-6920e468ad91e99bc16b9bf77ff59aff9d736826.tar.bz2 cuberite-6920e468ad91e99bc16b9bf77ff59aff9d736826.tar.lz cuberite-6920e468ad91e99bc16b9bf77ff59aff9d736826.tar.xz cuberite-6920e468ad91e99bc16b9bf77ff59aff9d736826.tar.zst cuberite-6920e468ad91e99bc16b9bf77ff59aff9d736826.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index d9449283b..7cbabf806 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -1921,12 +1921,11 @@ void cProtocol180::AddReceivedData(const char * a_Data, size_t a_Size) { // Decompress the data: AString CompressedData; - if (!m_ReceivedData.ReadString(CompressedData, CompressedSize)) + if (!m_ReceivedData.ReadString(CompressedData, CompressedSize) || (InflateString(CompressedData.data(), CompressedSize, UncompressedData) != Z_OK)) { m_Client->Kick("Compression failure"); return; } - InflateString(CompressedData.data(), CompressedSize, UncompressedData); PacketLen = UncompressedData.size(); } else |