Author: bapt Date: Mon Dec 12 07:02:53 2016 New Revision: 309880 URL: https://svnweb.freebsd.org/changeset/base/309880
Log: MFC r309803: Fix pw groupshow <gid> PR: 204676 Submitted by: [email protected] Modified: stable/11/usr.sbin/pw/pw_group.c Directory Properties: stable/11/ (props changed) Modified: stable/11/usr.sbin/pw/pw_group.c ============================================================================== --- stable/11/usr.sbin/pw/pw_group.c Mon Dec 12 07:01:05 2016 (r309879) +++ stable/11/usr.sbin/pw/pw_group.c Mon Dec 12 07:02:53 2016 (r309880) @@ -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; _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
