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
…close#1357
Motivation:
When multiple non US-ASCII chars are split over several chunks,
Utf8ByteBufCharsetDecoder crashes with BufferOverflowException.
This happens because we don't clear the splitCharBuffer in-between and
only do so once decoding is done.
Modifications:
Clear Utf8ByteBufCharsetDecoder#splitCharBuffer once char is complete
Result:
No more BufferOverflowException
When multiple non US-ASCII chars are split over several chunks, Utf8ByteBufCharsetDecoder crashes with BufferOverflowException.
This happens because we don't clear the
splitCharBuffer
in-between and only do so once decoding is done.The text was updated successfully, but these errors were encountered: