Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.6.0
-
None
Description
There is a small bug on ArrowBuf at line 750. It says:
udle.setBytes(index + offset, buf);
But it should say:
udle.setBytes(index + offset, newBuf);
There is a wraparound: You can call the method with the already sliced buffer.