Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 68525 invoked from network); 25 Jun 2008 09:25:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jun 2008 09:25:38 -0000 Received: (qmail 27287 invoked by uid 500); 25 Jun 2008 09:25:38 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 26755 invoked by uid 500); 25 Jun 2008 09:25:37 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 26744 invoked by uid 99); 25 Jun 2008 09:25:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jun 2008 02:25:37 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jun 2008 09:24:55 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4A404234C14B for ; Wed, 25 Jun 2008 02:24:45 -0700 (PDT) Message-ID: <1394834049.1214385885300.JavaMail.jira@brutus> Date: Wed, 25 Jun 2008 02:24:45 -0700 (PDT) From: "Tom White (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Created: (HADOOP-3640) NativeS3FsInputStream read() method for reading a single byte is incorrect MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org NativeS3FsInputStream read() method for reading a single byte is incorrect -------------------------------------------------------------------------- Key: HADOOP-3640 URL: https://issues.apache.org/jira/browse/HADOOP-3640 Project: Hadoop Core Issue Type: Bug Affects Versions: 0.18.0 Reporter: Tom White Assignee: Tom White >From Albert Chern: I think there may be a bug in the read() method of NativeS3InputStream, which looks like this: {code} public synchronized int read() throws IOException { int result = in.read(); if (result > 0) { pos += result; } return result; } {code} The return value of InputStream.read() should be the next byte in the range 0 to 255, or -1 if there are no more bytes. So shouldn't this method look something like this? {code} public synchronized int read() throws IOException { int result = in.read(); if (result > -1) { pos ++; } return result; } {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.