From stdcxx-dev-return-5204-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Tue Sep 25 00:37:23 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 66741 invoked from network); 25 Sep 2007 00:37:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Sep 2007 00:37:22 -0000 Received: (qmail 38963 invoked by uid 500); 25 Sep 2007 00:37:13 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 38947 invoked by uid 500); 25 Sep 2007 00:37:13 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 38936 invoked by uid 99); 25 Sep 2007 00:37:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Sep 2007 17:37:13 -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, 25 Sep 2007 00:37:11 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2038F714219 for ; Mon, 24 Sep 2007 17:36:51 -0700 (PDT) Message-ID: <4450866.1190680611127.JavaMail.jira@brutus> Date: Mon, 24 Sep 2007 17:36:51 -0700 (PDT) From: "Martin Sebor (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Closed: (STDCXX-448) SIGSEGV in std::valarray::operator[](gslice) In-Reply-To: <25664448.1182180325880.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/STDCXX-448?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Sebor closed STDCXX-448. ------------------------------- Resolution: Fixed Fixed by the just committed patch (http://svn.apache.org/viewvc?rev=579025&view=rev). Confirmed in a manual build. Closing. > SIGSEGV in std::valarray::operator[](gslice) > -------------------------------------------- > > Key: STDCXX-448 > URL: https://issues.apache.org/jira/browse/STDCXX-448 > Project: C++ Standard Library > Issue Type: Improvement > Components: 26. Numerics > Affects Versions: 4.1.2, 4.1.3, 4.1.4 > Environment: all > Reporter: Martin Sebor > Assignee: Martin Sebor > Fix For: 4.2 > > > ****Created By: micucci @ Dec 13, 1999 09:33:05 AM**** > ######## WORK NOTES COPIED FROM INCIDENT 879763 ######## > **** Entered By: leroy @ Wednesday, November 10, 1999 11:59:53 AM **** > [see Rogue Wave issue 4437: http://insight.roguewave.com/onyxinsight/qa/qa4437.htm] > ****Modified By: sebor @ Jan 24, 2000 03:40:38 PM**** > This doesn't compile with g++ 2.95.2: > test.cpp:9: `operator *' not defined > but does core dump with edg 2.42 > ****Modified By: pedretti @ Feb 07, 2000 05:37:33 PM**** > This is actually a problem with the valarray constructor that takes a gslice as an argument, which is called by the valarray::operator[] ( gslice );. in fact, the following code would cause the core dump: > ------ > #include > int main() > { > std::valarray dval; > dval[std::gslice()]; > } > ----- -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.