You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Paulex Yang (JIRA)" <ji...@apache.org> on 2007/08/27 11:57:30 UTC

[jira] Resolved: (HARMONY-4664) [luni] ObjectInputStream inSamePackage bug

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

Paulex Yang resolved HARMONY-4664.
----------------------------------

    Resolution: Fixed

Imran, fixed at r570057, please verify, thank you very much.

> [luni] ObjectInputStream inSamePackage bug
> ------------------------------------------
>
>                 Key: HARMONY-4664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Imran Ghory
>            Assignee: Paulex Yang
>            Priority: Minor
>
> private inSamePackage() function in ObjectInputStream does:
>         if (indexDotC1 != indexDotC1) {
>             return false; // cannot be in the same package if indices are not
>         }
> when it's obviously meant to be doing:
>         if (indexDotC1 != indexDotC2) {
>             return false; // cannot be in the same package if indices are not
>         }

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