Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 50331 invoked from network); 4 Oct 2007 12:28:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Oct 2007 12:28:13 -0000 Received: (qmail 87898 invoked by uid 500); 4 Oct 2007 12:28:00 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 87887 invoked by uid 500); 4 Oct 2007 12:28:00 -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 87871 invoked by uid 99); 4 Oct 2007 12:28:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Oct 2007 05:28:00 -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; Thu, 04 Oct 2007 12:28:11 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8FD9A714035 for ; Thu, 4 Oct 2007 05:27:50 -0700 (PDT) Message-ID: <23849961.1191500870586.JavaMail.jira@brutus> Date: Thu, 4 Oct 2007 05:27:50 -0700 (PDT) From: "Gregory Shimansky (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-4873) [drlvm][exception] NullPointerException causes SIGSEGV In-Reply-To: <9853564.1190970830626.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-4873?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gregory Shimansky updated HARMONY-4873: --------------------------------------- Attachment: HARMONY-4873.patch I wrote a workaround patch for this bug. It kind of "reverts" the changes done to exn_athrow_regs on Linux in HARMONY-4407 commit. > [drlvm][exception] NullPointerException causes SIGSEGV > ------------------------------------------------------ > > Key: HARMONY-4873 > URL: https://issues.apache.org/jira/browse/HARMONY-4873 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Environment: Debian Linux IA32 > Reporter: Alexei Zakharov > Attachments: HARMONY-4873.patch > > > The following innocent test causes segmentation fault if executed on DRLVM. However, it passes ok on RI and J9. > Test113.java > --- > import java.io.*; > public class Test113 { > static class A implements Serializable { > private final byte[] encoding = null; > protected A() {} > protected Object writeReplace() { > return new String(encoding.clone()); > } > } > public static void main(String argv[]) throws Exception { > ByteArrayOutputStream out = new ByteArrayOutputStream(); > ObjectOutputStream oos = new ObjectOutputStream(out); > A a = new A(); > for (int i = 0; i < 2; i++) { > try { > System.out.println("ITERATION " + i); > oos.writeObject(a); > } catch (NullPointerException e) { > System.out.println("NPE catched"); > } > } > System.out.println("PASS"); > } > } > --- -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.