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 2009/06/25 22:32:07 UTC

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

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

Mark Hindess closed HARMONY-4664.
---------------------------------


Closing as this is fixed in the current code.


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