svn commit: r309881 - stable/10/usr.sbin/pw

Baptiste Daroussin bapt at FreeBSD.org
Mon Dec 12 07:03:12 UTC 2016


Author: bapt
Date: Mon Dec 12 07:03:10 2016
New Revision: 309881
URL: https://svnweb.freebsd.org/changeset/base/309881

Log:
  MFC r309803:
  
  Fix pw groupshow <gid>
  
  PR:		204676
  Submitted by:	longwitz at incore.de

Modified:
  stable/10/usr.sbin/pw/pw_group.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/pw/pw_group.c
==============================================================================
--- stable/10/usr.sbin/pw/pw_group.c	Mon Dec 12 07:02:53 2016	(r309880)
+++ stable/10/usr.sbin/pw/pw_group.c	Mon Dec 12 07:03:10 2016	(r309881)
@@ -282,7 +282,7 @@ int
 pw_group_show(int argc, char **argv, char *arg1)
 {
 	struct group *grp = NULL;
-	char *name;
+	char *name = NULL;
 	intmax_t id = -1;
 	int ch;
 	bool all, force, quiet, pretty;


More information about the svn-src-all mailing list