From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5444 invoked by alias); 15 Jan 2013 07:44:53 -0000 Received: (qmail 5435 invoked by uid 22791); 15 Jan 2013 07:44:52 -0000 X-SWARE-Spam-Status: No, hits=-6.3 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 15 Jan 2013 07:44:44 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r0F7iiHd026741 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 15 Jan 2013 02:44:44 -0500 Received: from zalov.redhat.com (vpn1-5-87.ams2.redhat.com [10.36.5.87]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r0F7idLY015235 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 15 Jan 2013 02:44:43 -0500 Received: from zalov.cz (localhost [127.0.0.1]) by zalov.redhat.com (8.14.5/8.14.5) with ESMTP id r0F7ic1m031736; Tue, 15 Jan 2013 08:44:38 +0100 Received: (from jakub@localhost) by zalov.cz (8.14.5/8.14.5/Submit) id r0F7icpJ031735; Tue, 15 Jan 2013 08:44:38 +0100 Date: Tue, 15 Jan 2013 07:44:00 -0000 From: Jakub Jelinek To: Paul Pluzhnikov Cc: gcc-patches@gcc.gnu.org Subject: Re: [patch] PR55982 Fix buglet in __strncat_chk Message-ID: <20130115074437.GT7269@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <20130115005742.5C0D01908E4@elbrus2.mtv.corp.google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130115005742.5C0D01908E4@elbrus2.mtv.corp.google.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2013-01/txt/msg00761.txt.bz2 On Mon, Jan 14, 2013 at 04:57:42PM -0800, Paul Pluzhnikov wrote: > In libssp/strncat-chk.c, the loop was unrolled 5 times (apparently by > accident). > 2013-01-14 Paul Pluzhnikov > > PR 55982 > * strncat-chk.c (__strncat_chk): Fix loop unroll. Ok. Jakub