Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 89290 invoked from network); 22 Aug 2007 03:30:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Aug 2007 03:30:51 -0000 Received: (qmail 19234 invoked by uid 500); 22 Aug 2007 03:30:48 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 19141 invoked by uid 500); 22 Aug 2007 03:30:48 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 19132 invoked by uid 99); 22 Aug 2007 03:30:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Aug 2007 20:30:48 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Aug 2007 03:30:50 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8B90E714168 for ; Tue, 21 Aug 2007 20:30:30 -0700 (PDT) Message-ID: <18013849.1187753430549.JavaMail.jira@brutus> Date: Tue, 21 Aug 2007 20:30:30 -0700 (PDT) From: "Paulex Yang (JIRA)" To: commits@harmony.apache.org Subject: [jira] Assigned: (HARMONY-4664) [luni] ObjectInputStream inSamePackage bug In-Reply-To: <18095702.1187735791708.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-4664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paulex Yang reassigned HARMONY-4664: ------------------------------------ Assignee: Paulex Yang > [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.