You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Igor V. Stolyarov (JIRA)" <ji...@apache.org> on 2006/08/08 15:44:15 UTC

[jira] Commented: (HARMONY-1099) [classlib][io] java.io.PipedOutputStream.write(byte[], int, int) throws unexpected IndexOutOfBoundsException

    [ http://issues.apache.org/jira/browse/HARMONY-1099?page=comments#action_12426572 ] 
            
Igor V. Stolyarov commented on HARMONY-1099:
--------------------------------------------

Paulex, I've checked, these patches shouldn't have conflict.

> [classlib][io] java.io.PipedOutputStream.write(byte[], int, int) throws unexpected IndexOutOfBoundsException
> ------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1099
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1099
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Igor V. Stolyarov
>         Assigned To: Paulex Yang
>         Attachments: Harmony-1099-fixed.patch, Harmony-1099.patch
>
>
> java.io.PipedOutputStream.write(byte[], int, int) throws unexpected IndexOutOfBoundsException
> Test--------------------------------------------------------------------------------------------------------------------------
> import java.io.PipedInputStream;
> import java.io.PipedOutputStream;
> import java.io.IOException;
> public class Test {
>     public static void main(String[] args) { 
>         try{
>             PipedOutputStream localPipedOutputStream = new PipedOutputStream();
>             byte[] array0 = new byte[1024];
>             try{
>                 localPipedOutputStream.write(array0, 915, 8);
>                 System.out.println("No Exception!!!");
>             }catch (IOException expectedException) {
>                 expectedException.printStackTrace();
>             }
>         }catch (Throwable unexpectedException){
>             unexpectedException.printStackTrace();
>         }
>     } 
> }
> Output-----------------------------------------------------------------------------------------------------------------------
> Harmony:
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as app
> licable.
> java.lang.IndexOutOfBoundsException: Arguments out of bounds
>         at java.io.OutputStream.write(OutputStream.java:102)
>         at java.io.PipedOutputStream.write(PipedOutputStream.java:138)
>         at Test.main(DateTest.java:25)
> JRockit:
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC:
>  System optimized over throughput (initial strategy singleparpar))
> java.io.IOException: Pipe not connected
>         at java.io.PipedOutputStream.write(PipedOutputStream.java:120)
>         at Test.main(DateTest.java:25)

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