geforkt von Mirrors/Velocity
Correctly handle 0-length packet
Dieser Commit ist enthalten in:
Ursprung
009c9afe09
Commit
8dea7567d8
@ -24,7 +24,7 @@ public class MinecraftVarintFrameDecoder extends ByteToMessageDecoder {
|
|||||||
in.readerIndex(lastReaderIndex);
|
in.readerIndex(lastReaderIndex);
|
||||||
int packetLength = ProtocolUtils.readVarInt(in);
|
int packetLength = ProtocolUtils.readVarInt(in);
|
||||||
if (packetLength == 0) {
|
if (packetLength == 0) {
|
||||||
break find_packets;
|
continue find_packets;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in.readableBytes() < packetLength) {
|
if (in.readableBytes() < packetLength) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren