diff options
author | Mattes D <github@xoft.cz> | 2015-01-03 22:39:55 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-01-03 22:39:55 +0100 |
commit | 7d13a2a77a030a4f458ac01a51f8a4216a4a44b4 (patch) | |
tree | 7d871cfed77fe33748ebe4eb4c588f74050b2a9b /src/Protocol/Protocol18x.cpp | |
parent | Protocols: Ignore garbage data at the end of PluginMessage packets. (diff) | |
download | cuberite-7d13a2a77a030a4f458ac01a51f8a4216a4a44b4.tar cuberite-7d13a2a77a030a4f458ac01a51f8a4216a4a44b4.tar.gz cuberite-7d13a2a77a030a4f458ac01a51f8a4216a4a44b4.tar.bz2 cuberite-7d13a2a77a030a4f458ac01a51f8a4216a4a44b4.tar.lz cuberite-7d13a2a77a030a4f458ac01a51f8a4216a4a44b4.tar.xz cuberite-7d13a2a77a030a4f458ac01a51f8a4216a4a44b4.tar.zst cuberite-7d13a2a77a030a4f458ac01a51f8a4216a4a44b4.zip |
Diffstat (limited to 'src/Protocol/Protocol18x.cpp')
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index 21b098735..3c4e049bd 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -2336,7 +2336,7 @@ void cProtocol180::HandlePacketPluginMessage(cByteBuffer & a_ByteBuffer) if (a_ByteBuffer.GetReadableSpace() > 1) { LOGD("Protocol 1.8: Skipping garbage data at the end of a vanilla PluginMessage packet, %u bytes", - a_ByteBuffer.GetReadableSpace() - 1 + static_cast<unsigned>(a_ByteBuffer.GetReadableSpace() - 1) ); a_ByteBuffer.SkipRead(a_ByteBuffer.GetReadableSpace() - 1); } |