[ https://issues.apache.org/jira/browse/HADOOP-1311?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12503919 ]
Hadoop QA commented on HADOOP-1311: ----------------------------------- Integrated in Hadoop-Nightly #119 (See [http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Nightly/119/]) > 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 > Assignee: dhruba borthakur > Fix For: 0.14.0 > > Attachments: bytesWritable.patch > > > 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.