From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27384 invoked from network); 26 May 2000 05:36:00 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 26 May 2000 05:36:00 -0000 Received: (qmail 9872 invoked by alias); 26 May 2000 05:35:53 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11587 Received: (qmail 9863 invoked from network); 26 May 2000 05:35:52 -0000 Message-ID: <20000526053550.20404.qmail@web1303.mail.yahoo.com> Date: Thu, 25 May 2000 22:35:50 -0700 (PDT) From: Felix Rosencrantz Subject: PATCH: Small fix for uninitialized variable To: zsh-workers MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-1681692777-959319350=:19630" --0-1681692777-959319350=:19630 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Here's a small patch that fixes uninitialized memory accesses found at run-time via the tests. -FR. __________________________________________________ Do You Yahoo!? Kick off your party with Yahoo! Invites. http://invites.yahoo.com/ --0-1681692777-959319350=:19630 Content-Type: text/plain; name="patch4.txt" Content-Description: patch4.txt Content-Disposition: inline; filename="patch4.txt" Index: Src/pattern.c =================================================================== --- zsh/Src/opattern.c Thu Apr 27 03:58:49 2000 +++ zsh/Src/pattern.c Thu May 25 22:49:05 2000 @@ -631,7 +631,7 @@ patcompbranch(int *flagp) { long chain, latest, starter; - int flags; + int flags = 0; *flagp = P_PURESTR; --0-1681692777-959319350=:19630--