Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 04 Apr 1997 17:45:19 +0200
From:      Arne Henrik Juul <arnej@stud.fim.ntnu.no>
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
Message-ID:  <199704041545.HAA14700@freefall.freebsd.org>
In-Reply-To: Your message of "Wed, 2 Apr 1997 02:44:17 -0800 (PST)"
References:  <199704021044.CAA22226@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
> jmg         97/04/02 02:44:16
> 
>   Modified:    usr.bin/vgrind  vfontedpr.c
>   Log:
>   minor stylistic change (NULL to '\0')
>   
>   Submitted-by: Philippe Charnier <charnier@xp11.frmug.org>

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.





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199704041545.HAA14700>