[ 
https://issues.apache.org/jira/browse/HDFS-11719?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16619091#comment-16619091
 ] 

Shashikant Banerjee commented on HDFS-11719:
--------------------------------------------

Thanks [~thinktaocs] for the proposed fix and [~liuml07] for the patch. I am +1 
on this.

> Arrays.fill() wrong index in BlockSender.readChecksum() exception handling
> --------------------------------------------------------------------------
>
>                 Key: HDFS-11719
>                 URL: https://issues.apache.org/jira/browse/HDFS-11719
>             Project: Hadoop HDFS
>          Issue Type: Bug
>          Components: datanode
>            Reporter: Tao Zhang
>            Assignee: Tao Zhang
>            Priority: Major
>         Attachments: HADOOP-11719.001.patch, HADOOP-11719.002.patch, 
> HADOOP-11719.003.patch
>
>
> In BlockSender.readChecksum() exception handling part:
> Arrays.fill(buf, checksumOffset, checksumLen, (byte) 0);
> Actually the paramters should be: Arrays.fill(buf, <startIndex>, <endIndex>, 
> value);
> So it should be changed to:
> Arrays.fill(buf, checksumOffset, checksumOffset + checksumLen, (byte) 0);



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to