From 4f3209b9d4b24ebe9b76e3bfe8ddd87af5228af9 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 13 Sep 2008 12:51:10 +0000 Subject: id: code shrink function old new delta id_main 494 462 -32 --- coreutils/id.c | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) (limited to 'coreutils/id.c') diff --git a/coreutils/id.c b/coreutils/id.c index b2f3b20e1..cf642c209 100644 --- a/coreutils/id.c +++ b/coreutils/id.c @@ -45,7 +45,7 @@ int id_main(int argc UNUSED_PARAM, char **argv) uid_t uid; gid_t gid; gid_t *groups; - int grp; + int n; unsigned long flags; short status; #if ENABLE_SELINUX @@ -72,17 +72,17 @@ int id_main(int argc UNUSED_PARAM, char **argv) /* in this case PRINT_REAL is the same */ } - grp = getgroups(0, 0); - groups = (gid_t *)xmalloc(sizeof(gid_t) * grp); - getgroups(grp, (gid_t *)groups); + n = getgroups(0, NULL); + groups = xmalloc(sizeof(groups[0]) * n); + getgroups(n, groups); - if (flags & (JUST_ALL_GROUPS)) { - while (grp--) { + if (flags & JUST_ALL_GROUPS) { + while (n--) { if (flags & NAME_NOT_NUMBER) printf("%s", bb_getgrgid(NULL, 0, *groups++)); else - printf("%d", *groups++); - bb_putchar((grp > 0) ? ' ' : '\n'); + printf("%d", (int) *groups++); + bb_putchar((n > 0) ? ' ' : '\n'); } /* exit */ fflush_stdout_and_exit(EXIT_SUCCESS); @@ -105,7 +105,7 @@ int id_main(int argc UNUSED_PARAM, char **argv) #if ENABLE_SELINUX if (flags & JUST_CONTEXT) { selinux_or_die(); - if (argc - optind == 1) { + if (argv[optind]) { bb_error_msg_and_die("user name can't be passed with -Z"); } @@ -122,16 +122,17 @@ int id_main(int argc UNUSED_PARAM, char **argv) /* Print full info like GNU id */ /* bb_getpwuid(0) doesn't exit on failure (returns NULL) */ status = printf_full(uid, bb_getpwuid(NULL, 0, uid), "uid="); - bb_putchar(' '); - status |= printf_full(gid, bb_getgrgid(NULL, 0, gid), "gid="); - printf(" groups="); - while (grp--) { - status |= printf_full(*groups, bb_getgrgid(NULL, 0, *groups), ""); - if (grp > 0) - bb_putchar(','); - groups++; + status |= printf_full(gid, bb_getgrgid(NULL, 0, gid), " gid="); + { + const char *msg = " groups="; + while (n--) { + status |= printf_full(*groups, bb_getgrgid(NULL, 0, *groups), msg); + msg = ","; + groups++; + } } - /* Don't free groups */ + /* we leak groups vector... */ + #if ENABLE_SELINUX if (is_selinux_enabled()) { security_context_t mysid; -- cgit v1.2.3