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
When adding multiple java objects to a pickle a buffer overflow can occur. I believe this to be a bug related to native/java/org/jpype/pickle/ByteBufferInputStream.java specifically how it resizes after multiple puts.
java.nio.BufferOverflowException
at java.base/java.nio.HeapByteBuffer.put(HeapByteBuffer.java:231)
at java.base/java.nio.ByteBuffer.put(ByteBuffer.java:1210)
at org.jpype.pickle.ByteBufferInputStream.put(Unknown Source)
at org.jpype.pickle.Decoder.unpack(Unknown Source)
The text was updated successfully, but these errors were encountered:
When adding multiple java objects to a pickle a buffer overflow can occur. I believe this to be a bug related to
native/java/org/jpype/pickle/ByteBufferInputStream.java
specifically how it resizes after multipleputs
.The text was updated successfully, but these errors were encountered: