Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 94901 invoked from network); 26 Jun 2006 11:49:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Jun 2006 11:49:03 -0000 Received: (qmail 5659 invoked by uid 500); 26 Jun 2006 11:49:03 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 5629 invoked by uid 500); 26 Jun 2006 11:49:03 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 5617 invoked by uid 99); 26 Jun 2006 11:49:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 04:49:03 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 04:49:02 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2DFBD410007 for ; Mon, 26 Jun 2006 11:47:30 +0000 (GMT) Message-ID: <5731595.1151322450185.JavaMail.jira@brutus> Date: Mon, 26 Jun 2006 11:47:30 +0000 (GMT+00:00) From: "Vladimir Ivanov (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Updated: (HARMONY-667) [classlib][io]java.io.BufferedInputStream.skip(int n) unexpected NPE In-Reply-To: <1370782.1151322329766.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/HARMONY-667?page=all ] Vladimir Ivanov updated HARMONY-667: ------------------------------------ Attachment: BufferedInputStreamTest.patch unit test > [classlib][io]java.io.BufferedInputStream.skip(int n) unexpected NPE > -------------------------------------------------------------------- > > Key: HARMONY-667 > URL: http://issues.apache.org/jira/browse/HARMONY-667 > Project: Harmony > Type: Bug > Components: Classlib > Reporter: Vladimir Ivanov > Attachments: BufferedInputStreamTest.patch > > The java.io.BufferedInputStream.skip(int n) throws unexpected NPE if object was constructed as BufferedInputStream(null, ...) while RI throws IOException. The same behavior observed for java.io.BufferedInputStream.close() too. > =================== test.java ============================ > import java.io.*; > public class test { > public static void main (String[] args) { > BufferedInputStream buf = new BufferedInputStream(null,5); > try { > buf.skip(1); > } catch (Exception e) { > e.printStackTrace(); > } > try { > buf.close(); > } catch (Exception e) { > e.printStackTrace(); > } > } > } > ====================================================== > Output: > C:\tmp\tmp17>C:\jrockit-j2sdk1.4.2_04\bin\java.exe -showversion test > java version "1.4.2_04" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05) > BEA WebLogic JRockit(TM) 1.4.2_04 JVM (build ari-31788-20040616-1132-win-ia32, Native Threads, GC strategy: parallel) > java.io.IOException: Stream closed > at java.io.BufferedInputStream.ensureOpen()V(BufferedInputStream.java:120) > at java.io.BufferedInputStream.skip(J)J(BufferedInputStream.java:296) > at test.main([Ljava.lang.String;)V(test.java:7) > C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -showversion test > java version 1.5 (subset) > (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. > java.lang.NullPointerException > at java.io.BufferedInputStream.skip(BufferedInputStream.java:339) > at test.main(test.java:7) > java.lang.NullPointerException > at java.io.FilterInputStream.close(FilterInputStream.java:68) > at java.io.BufferedInputStream.close(BufferedInputStream.java:112) > at test.main(test.java:12) > C:\tmp\tmp17> -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira