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/15 07:53:27 UTC

[jira] Resolved: (HARMONY-2794) [classlib][awt]java.awt.image.IndexColorModel.getNormalizedComponents throws ArrayIndexOutOfBoundsException on Harmony while it does not on RI

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

Mark Hindess resolved HARMONY-2794.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r496242.  Please confirm they have been applied as expected.

> [classlib][awt]java.awt.image.IndexColorModel.getNormalizedComponents throws ArrayIndexOutOfBoundsException on Harmony while it does not on RI
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2794
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2794
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Ilya Okomin
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: ColorModel2794.patch, ColorModel2794Test.patch
>
>
> According to the specification for getNormalizedComponents(int[] components, int offset, float[] normComponents, int normOffset):
> "If the normComponents array is null, a new array will be allocated" and "an ArrayIndexOutOfBoundsException is thrown if the normComponents array is not null and is not large enough to hold all the color and alpha components (starting at normOffset)".
> Test listed below sets normComponents==null. 
> In this case RI does not throw an exception according to the specification while Harmony throws.
> ---------------- test.java-------------------
> import junit.framework.TestCase;
> import java.awt.*;
> import java.awt.image.*;
> public class test extends TestCase {      
>     public void test1 () {             
>           IndexColorModel obj=new IndexColorModel(1,1,new byte[]{1,1,1},0,
> false);
>           obj.getNormalizedComponents(new int[] {1,-23,5,67,89,0}, 1, null,
> 1002);
>     }
> }
> ----------------------------------------
> Output on Sun 1.5:
> ==================
> .
> Time: 0
> OK (1 test)
> Output on Harmony:
> ==================
> .E
> Time: 0.016
> There was 1 error:
> 1) test1(test)java.lang.ArrayIndexOutOfBoundsException
>         at
> java.awt.image.ColorModel.getNormalizedComponents(ColorModel.java:294)
>         at test.test1(test.java:7)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Note: The same issue is for IndexColorModel.getUnnormalizedComponents()

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