Bug in BytesWritable.set(byte[] newData, int offset, int length)
-----------------------------------------------------------------
Key: HADOOP-1311
URL: https://issues.apache.org/jira/browse/HADOOP-1311
Project: Hadoop
Issue Type: Bug
Components: io
Environment: N/A
Reporter: Srikanth Kakani
Current implementation:
public void set(byte[] newData, int offset, int length) {
setSize(0);
setSize(length);
System.arraycopy(newData, 0, bytes, 0, size);
}
Correct implementation:
public void set(byte[] newData, int offset, int length) {
setSize(0);
setSize(length);
System.arraycopy(newData, offset, bytes, 0, size);
}
please fix.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.