From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.devel Subject: Re: Wasn't this supposed to be fixed? Date: Mon, 26 Jan 2004 14:22:20 -0500 Sender: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Message-ID: References: <40138338.70605@swipnet.se> Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1075145218 26751 80.91.224.253 (26 Jan 2004 19:26:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 26 Jan 2004 19:26:58 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org, dak@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Mon Jan 26 20:26:54 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AlCNp-00047v-00 for ; Mon, 26 Jan 2004 20:26:53 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AlCNe-0004es-O1 for gebp-emacs-pretest-bug@gmane.org; Mon, 26 Jan 2004 14:26:42 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AlCMB-0003oQ-Nh for emacs-pretest-bug@gnu.org; Mon, 26 Jan 2004 14:25:11 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AlCKa-0002ZO-MR for emacs-pretest-bug@gnu.org; Mon, 26 Jan 2004 14:24:05 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AlCJq-0001i6-M0; Mon, 26 Jan 2004 14:22:46 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.24) id 1AlCJQ-0005UB-E1; Mon, 26 Jan 2004 14:22:20 -0500 Original-To: "Jan D." In-reply-to: <40138338.70605@swipnet.se> (jan.h.d@swipnet.se) X-BeenThere: emacs-pretest-bug@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.pretest.bugs:1936 gmane.emacs.devel:19494 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:19494 The way this is supposed to work is that sigchld_handler is not supposed to call malloc. However, it was changed to call strsignal, and that calls malloc. I think the best fix is to bring it back to the original design and move the call to strsignal out of the signal handler. Instead, it can set another variable; Fcall_process can check that variable and call strsignal. Would you like to implement this?