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: [email protected] 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; _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
