You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2007/01/12 21:55:27 UTC

[jira] Resolved: (HARMONY-2194) [classlib][awt] Harmony BuffredImage.getWritableTile(int tileX, int tileY) throws unexpected ArrayIndexOutOfBoundsException, but RI doesn't

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

Mark Hindess resolved HARMONY-2194.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Igor, thanks for the patches.  I applied them in r495734.  The test patch didn't apply cleanly since the test file already existed so I applied it manually.  Please confirm that they have been applied correctly.


> [classlib][awt] Harmony BuffredImage.getWritableTile(int tileX, int tileY) throws unexpected ArrayIndexOutOfBoundsException, but RI doesn't
> -------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2194
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2194
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Igor V. Stolyarov
>         Assigned To: Mark Hindess
>         Attachments: BufferedImageTest.patch, Harmony-2194.patch
>
>
> Harmony BuffredImage.getWritableTile(int tileX, int tileY) throws unexpected ArrayIndexOutOfBoundsException, but RI doesn't
> Test for reproduce:
> Test.java-----------------------------------------------------
> import java.awt.image.*; 
> public class Test {
>     public static void main(String[] args) {
>         BufferedImage bi = new BufferedImage(10, 10, BufferedImage.TYPE_4BYTE_ABGR);
>         try {
>             WritableRaster tile = bi.getWritableTile(100, 100);
>             System.out.println("PASSED");
>         } catch (ArrayIndexOutOfBoundsException e) {
>             System.out.println(e + " - was thrown");
>         }
>     }
> }
> ------------------------------------------------------------------------------------
> Output
> Bea 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))
> PASSED
> ------------------------------------------------------------------------------------
> Harmony
> Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundatio
> n or its licensors, as applicable.
> java version "1.5.0"
> pre-alpha : not complete or compatible
> svn = r474778, (Nov 14 2006), Windows/ia32/msvc 1310, release build
> http://incubator.apache.org/harmony
> java.lang.ArrayIndexOutOfBoundsException: Both tileX and tileY are not equal to
> 0 - was thrown

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira