You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "dhruba borthakur (JIRA)" <ji...@apache.org> on 2007/06/01 01:43:15 UTC

[jira] Updated: (HADOOP-1311) Bug in BytesWritable.set(byte[] newData, int offset, int length)

     [ https://issues.apache.org/jira/browse/HADOOP-1311?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

dhruba borthakur updated HADOOP-1311:
-------------------------------------

    Status: Patch Available  (was: Open)

Please review again.

> 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
>         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.