Skip to content

Commit

Permalink
Merge pull request #3962 from TeamAmaze/issue/3961
Browse files Browse the repository at this point in the history
Fixes #3961
  • Loading branch information
VishalNehra authored Oct 30, 2023
2 parents 0beaea2 + f188223 commit 4161845
Showing 1 changed file with 17 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
import java.nio.CharBuffer;
import java.nio.channels.Channels;
import java.nio.channels.FileChannel;
import java.nio.charset.Charset;
import java.nio.charset.CoderMalfunctionError;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.BitSet;
Expand Down Expand Up @@ -2121,13 +2122,22 @@ private static byte[] utf16Decode(final char[] chars) {
if (chars == null) {
return null;
}
final ByteBuffer encoded = Charset.forName("UTF-16LE").encode(CharBuffer.wrap(chars));
if (encoded.hasArray()) {
return encoded.array();

try {
final ByteBuffer encoded = StandardCharsets.UTF_16LE.encode(CharBuffer.wrap(chars));

if (encoded.hasArray()) {
return encoded.array();
}
final byte[] e = new byte[encoded.remaining()];
encoded.get(e);

return e;

} catch (CoderMalfunctionError e) {
e.printStackTrace();
return null;
}
final byte[] e = new byte[encoded.remaining()];
encoded.get(e);
return e;
}

private static int assertFitsIntoNonNegativeInt(final String what, final long value)
Expand Down

0 comments on commit 4161845

Please sign in to comment.