Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 96762 invoked from network); 4 Apr 2007 04:27:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Apr 2007 04:27:53 -0000 Received: (qmail 77788 invoked by uid 500); 4 Apr 2007 04:28:00 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 77767 invoked by uid 500); 4 Apr 2007 04: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 77758 invoked by uid 99); 4 Apr 2007 04:28:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Apr 2007 21: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; Tue, 03 Apr 2007 21:27:52 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8B90E714066 for ; Tue, 3 Apr 2007 21:27:32 -0700 (PDT) Message-ID: <5996147.1175660852567.JavaMail.jira@brutus> Date: Tue, 3 Apr 2007 21:27:32 -0700 (PDT) From: "Xiao-Feng Li (JIRA)" To: commits@harmony.apache.org Subject: [jira] Assigned: (HARMONY-3557) [gc_gen] there is error in large_page paremeter parsing in common/gc_common.cpp In-Reply-To: <1584986.1175598272469.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-3557?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Xiao-Feng Li reassigned HARMONY-3557: ------------------------------------- Assignee: Xiao-Feng Li > [gc_gen] there is error in large_page paremeter parsing in common/gc_common.cpp > ------------------------------------------------------------------------------- > > Key: HARMONY-3557 > URL: https://issues.apache.org/jira/browse/HARMONY-3557 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Environment: linux and windows > Reporter: Rustem Rafikov > Assigned To: Xiao-Feng Li > > There is an error in command line parsing connected with large pages. It checkes if gc.use_large_page is set but later try to get "gc.large_page." It passes silently on windows but crashes in strdup on linux. > if (is_property_set("gc.use_large_page", VM_PROPERTIES) == 1){ > char* value = get_property("gc.large_page", VM_PROPERTIES); > large_page_hint = strdup(value); > destroy_property_value(value); > } > The fix is trivial. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.