From owner-cvs-all@FreeBSD.ORG Wed Apr 23 00:39:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F82537B401; Wed, 23 Apr 2003 00:39:56 -0700 (PDT) Received: from nd250009.gab.xdsl.ne.jp (nd250009.gab.xdsl.ne.jp [61.202.250.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3D1843F85; Wed, 23 Apr 2003 00:39:55 -0700 (PDT) (envelope-from nork@ninth-nine.com) Received: from nd250009.gab.xdsl.ne.jp ([IPv6:2002:d312:f91e::1]) (authenticated bits=0) by nd250009.gab.xdsl.ne.jp (8.12.9/8.12.9/NinthNine) with ESMTP id h3N7drn9027404 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 23 Apr 2003 16:39:54 +0900 (JST) (envelope-from nork@ninth-nine.com) Date: Wed, 23 Apr 2003 16:39:54 +0900 (JST) Message-Id: <200304230739.h3N7drn9027404@nd250009.gab.xdsl.ne.jp> From: Norikatsu Shigemura To: Jacques Vidrine In-Reply-To: <200304222219.h3MMJ5IK043378@repoman.freebsd.org> References: <200304222219.h3MMJ5IK043378@repoman.freebsd.org> X-Mailer: Sylpheed version 0.8.11 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen getgrent.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 07:39:57 -0000 On Tue, 22 Apr 2003 15:19:05 -0700 (PDT) Jacques Vidrine wrote: > Correct a bug that should have wreaked havoc everywhere, but for > some reason only bit unlucky people who use `-march' optimizations. > The compiler cannot assist one in distinguishing between the two > function calls below. > int nsdispatch(void *, ...); > void *discard; > nsdispatch(&discard, ...); /* correct .. no, really! */ > nsdispatch(discard, ...); /* Boom */ > Robin provided me with a debugging environment in which I could see > what was going on. > Badness when using CPUTYPE was > Reported by: "Robin P. Blanchard" > Reported by: nork I confirmed that this problem was fixed. Thank you! > Sponsored by: DARPA, Network Associates Laboratories > > Revision Changes Path > 1.28 +3 -3 src/lib/libc/gen/getgrent.c