13
0
geforkt von Mirrors/Velocity

Use ByteBuf#clear() instead of skipping readable bytes

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-11-02 22:44:53 -05:00
Ursprung 7944544606
Commit 9adba81d23
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -23,7 +23,7 @@ public class LegacyPingDecoder extends ByteToMessageDecoder {
} }
if (!ctx.channel().isActive()) { if (!ctx.channel().isActive()) {
in.skipBytes(in.readableBytes()); in.clear();
return; return;
} }

Datei anzeigen

@ -18,7 +18,7 @@ public class MinecraftVarintFrameDecoder extends ByteToMessageDecoder {
@Override @Override
protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) { protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {
if (!ctx.channel().isActive()) { if (!ctx.channel().isActive()) {
in.skipBytes(in.readableBytes()); in.clear();
return; return;
} }