From owner-cvs-usrbin Fri Apr 4 07:45:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA14724 for cvs-usrbin-outgoing; Fri, 4 Apr 1997 07:45:50 -0800 (PST) Received: from huset.fm.unit.no (huset.fm.unit.no [129.241.211.212]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id HAA14700 for ; Fri, 4 Apr 1997 07:45:30 -0800 (PST) Message-Id: <199704041545.HAA14700@freefall.freebsd.org> Received: (qmail 8648 invoked from network); 4 Apr 1997 15:45:19 -0000 Received: from huset.fm.unit.no (HELO stud.fim.ntnu.no) (129.241.211.212) by huset.fm.unit.no with SMTP; 4 Apr 1997 15:45:19 -0000 To: jmg@freefall.freebsd.org Cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-usrbin@freefall.freebsd.org Subject: Re: cvs commit: src/usr.bin/vgrind vfontedpr.c In-Reply-To: Your message of "Wed, 2 Apr 1997 02:44:17 -0800 (PST)" References: <199704021044.CAA22226@freefall.freebsd.org> X-Mailer: Mew version 1.06 on Emacs 19.34.1 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Fri, 04 Apr 1997 17:45:19 +0200 From: Arne Henrik Juul Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > jmg 97/04/02 02:44:16 > > Modified: usr.bin/vgrind vfontedpr.c > Log: > minor stylistic change (NULL to '\0') > > Submitted-by: Philippe Charnier You (or maybe rather Charnier) missed the rest of the similar bugs in this file: frida:/usr/current/src/usr.bin/vgrind:(608)# cvs diff vfontedpr.c Index: vfontedpr.c =================================================================== RCS file: /usr/cvs/src/usr.bin/vgrind/vfontedpr.c,v retrieving revision 1.7 diff -r1.7 vfontedpr.c 248c248 < *cp++ = NULL; --- > *cp++ = '\0'; 292c292 < pstack[psptr][0] = NULL; --- > pstack[psptr][0] = '\0'; 697c697 < pname[0] = NULL; --- > pname[0] = '\0'; In fact there are a lot of similar bugs in the tree. Could you please look at PR bin/2752 and check if it's possible to apply some of the fixes in it? - Arne H. J.