You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tim Ellison (JIRA)" <ji...@apache.org> on 2009/12/04 14:56:20 UTC

[jira] Updated: (HARMONY-6395) [classlib][luni] Arrays.sort(double []) will result in StackOverflowError for specific arrays input

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

Tim Ellison updated HARMONY-6395:
---------------------------------

    Fix Version/s:     (was: 5.0M12)

> [classlib][luni] Arrays.sort(double []) will result in StackOverflowError for specific arrays input
> ---------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-6395
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6395
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 5.0M11
>            Reporter: Jim Yu
>            Assignee: Sean Qiu
>         Attachments: harmony-6395-2.patch, HARMONY-6395.diff
>
>
> There is a simple testcase as below. You can see StackOverflowError if run this testcase. This is a defect of Arrays.sort(double []), I have attached a fix for it.
> import java.util.Arrays;
> public class SortTest {
>     public static void main(String[] args) {
>         double[] array = { Double.NaN, 1.0, 2.0, Double.NaN, Double.NaN, 3.0,
>                 4.0 };
>         displayArray(array);
>         Arrays.sort(array);
>         displayArray(array);
>         System.out.println();
>     }
>     private static void displayArray(double[] array) {
>         for (double d : array)
>             System.out.print(d + " ");
>         System.out.println();
>     }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.