You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NettyDataBuffer uses this.byteBuf.nioBuffer() internally which will allocates fewer bytes if readPosition is greater than 0. The following checks are then failing with an IndexOutOfBoundsException.
NettyDataBuffer uses
this.byteBuf.nioBuffer()
internally which will allocates fewer bytes if readPosition is greater than 0. The following checks are then failing with anIndexOutOfBoundsException
.spring-framework/spring-core/src/main/java/org/springframework/core/io/buffer/NettyDataBuffer.java
Line 316 in 2b7a920
Here is a simple repro case (which passes for
DefaultDataBufferFactory
):The text was updated successfully, but these errors were encountered: