Advertisement
Guest User

Untitled

a guest
May 24th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(3) + length(8) exceeds writerIndex(8): PooledUnsafeDirectByteBuf(ridx: 3, widx: 8, cap: 8)
  2. at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99)
  3. at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:318)
  4. at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:304)
  5. at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:276)
  6. at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:354)
  7. at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:244)
  8. at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:318)
  9. at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:304)
  10. at io.netty.handler.codec.ByteToMessageDecoder.handlerRemoved(ByteToMessageDecoder.java:216)
  11. at io.netty.channel.DefaultChannelPipeline.callHandlerRemoved0(DefaultChannelPipeline.java:527)
  12. at io.netty.channel.DefaultChannelPipeline.callHandlerRemoved(DefaultChannelPipeline.java:521)
  13. at io.netty.channel.DefaultChannelPipeline.remove0(DefaultChannelPipeline.java:351)
  14. at io.netty.channel.DefaultChannelPipeline.remove(DefaultChannelPipeline.java:322)
  15. at io.netty.channel.DefaultChannelPipeline.remove(DefaultChannelPipeline.java:299)
  16. at net.md_5.bungee.protocol.LegacyDecoder.decode(LegacyDecoder.java:37)
  17. at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:360)
  18. at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:244)
  19. at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:318)
  20. at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:304)
  21. at io.netty.handler.timeout.ReadTimeoutHandler.channelRead(ReadTimeoutHandler.java:152)
  22. at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:318)
  23. at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:304)
  24. at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:846)
  25. at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
  26. at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:339)
  27. at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:255)
  28. at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:112)
  29. at java.lang.Thread.run(Thread.java:745)
  30. Caused by: java.lang.IndexOutOfBoundsException: readerIndex(3) + length(8) exceeds writerIndex(8): PooledUnsafeDirectByteBuf(ridx: 3, widx: 8, cap: 8)
  31. at io.netty.buffer.AbstractByteBuf.checkReadableBytes0(AbstractByteBuf.java:1178)
  32. at io.netty.buffer.AbstractByteBuf.checkReadableBytes(AbstractByteBuf.java:1172)
  33. at io.netty.buffer.AbstractByteBuf.readBytes(AbstractByteBuf.java:693)
  34. at io.netty.buffer.AbstractByteBuf.readBytes(AbstractByteBuf.java:701)
  35. at net.md_5.bungee.protocol.DefinedPacket.readString(DefinedPacket.java:36)
  36. at net.md_5.bungee.protocol.packet.Handshake.read(Handshake.java:27)
  37. at net.md_5.bungee.protocol.DefinedPacket.read(DefinedPacket.java:185)
  38. at net.md_5.bungee.protocol.MinecraftDecoder.decode(MinecraftDecoder.java:33)
  39. at net.md_5.bungee.protocol.MinecraftDecoder.decode(MinecraftDecoder.java:10)
  40. at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement