Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Zsh bugfixes released by RedHat
- X-seq: zsh-workers 33613
- From: Jérémie Roquet <arkanosis@xxxxxxxxx>
- To: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- Subject: Re: Zsh bugfixes released by RedHat
- Date: Thu, 6 Nov 2014 17:58:19 +0100
- Cc: "Zsh Hackers' List" <zsh-workers@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=wxcfflKZi06kfMHA6Fr8y9+kN/m6NrB8bJYA68kXzl8=; b=go2BXZwb2vSoI+TjkNgbN5HrK0Hz+DRraKC3jSWEHJXUrmVBYRrfyE1OLsjQVG8END 6kkYCKK3htpJgpmbjDSbfcoRqytRcxKiU2aPpZQrbbi4DjGkGiHhQyEAfKrxshJkEopl cEnlEjFblcuIKZsyhOh9HJSM7Bsd8lXiin7FXcj1fN+R9zhQ2TWIh0Lfn51DppWAn6uj dLlpJ3o77Y1K6AD65a9DCl2T3jHuVnG5xWZYkwwek2LOSaFb4xavZI8PSBxQYhf2vxqo SMqeybSV/u6vo7VqINf61pA2fnU1QkU0b23gMzTkyJGTIqnH1d9k2TB4ivHoP7aLHaCQ nprw==
- In-reply-to: <141106075609.ZM3709@torch.brasslantern.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <141106075609.ZM3709@torch.brasslantern.com>
2014-11-06 16:56 GMT+01:00 Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>:
> https://rhn.redhat.com/errata/RHBA-2014-1806.html
>
> Anybody know if these are new patches invented by RedHat,
> or something they selectively picked up from our git?
>
> I don't immediately recognize the descriptions in the errata.
The syntax fix is a combination of commit
8879c46a4897a0e347455334fc6b6732c203a220 and commit
9a044f1a6ad4ecfdfeff2f89e1685a1d622cb029, both in git.
The malloc workaround is attached and *not* in git. Its name suggests
it's only a workaround, maybe the reason no patch was sent upstream?
Best regards,
--
Jérémie
--- zsh-4.3.10/Src/exec.c.open 2009-03-16 23:57:07.000000000 +0530
+++ zsh-4.3.10/Src/exec.c 2014-04-09 19:41:25.829453955 +0530
@@ -4080,7 +4080,9 @@ execshfunc(Shfunc shf, LinkList args)
sfcontext = SFC_DIRECT;
doshfunc(shf, args, 0);
sfcontext = osfc;
+ queue_signals();
free(cmdstack);
+ unqueue_signals();
cmdstack = ocs;
cmdsp = ocsp;
Messages sorted by:
Reverse Date,
Date,
Thread,
Author