You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Richard Liang (JIRA)" <ji...@apache.org> on 2006/12/12 07:02:23 UTC

[jira] Resolved: (HARMONY-2510) [classlib][archive]Inflater.inflate fails to throw DataFormatException while the uncompression method is not acceptable.

     [ http://issues.apache.org/jira/browse/HARMONY-2510?page=all ]

Richard Liang resolved HARMONY-2510.
------------------------------------

    Resolution: Fixed

Hello Leo,

The patch has been applied at revision r486042, thank you for this enhancement. Would you please verify this issue has been fully fixed as you expected.

Best regards,
Richard

> [classlib][archive]Inflater.inflate fails to throw DataFormatException while the uncompression method is not acceptable.
> ------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2510
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2510
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Leo Li
>         Assigned To: Richard Liang
>         Attachments: patch-2510.diff
>
>
> Here is the testcase:
> public void test() throws Exception {
>         Inflater inflater = new Inflater();
>         inflater.setInput(new byte[] { -1 });
>         byte[] b = new byte[1024];
>         try {
>             inflater.inflate(b);
>             fail("should throw DataFormatException");
>         } catch (DataFormatException e) {
>             // expected
>         } finally {
>             inflater.end();
>         }
>     }
> RI passes.
> Harmony fails.

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