From: Jim Meyering Date: Wed, 3 Dec 2003 10:28:39 +0000 (+0000) Subject: (getgroups): xmalloc takes one argument, not two. X-Git-Tag: v5.1.0~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54594d2b212782e62f41cf731415968e815b7582;p=thirdparty%2Fcoreutils.git (getgroups): xmalloc takes one argument, not two. --- diff --git a/lib/getgroups.c b/lib/getgroups.c index 4ffa4e08fc..0f951b73ba 100644 --- a/lib/getgroups.c +++ b/lib/getgroups.c @@ -48,7 +48,7 @@ getgroups (int n, GETGROUPS_T *group) /* No need to worry about address arithmetic overflow here, since the ancient systems that we're running on have low limits on the number of secondary groups. */ - gbuf = xmalloc (gbuf, n * sizeof *gbuf); + gbuf = xmalloc (n * sizeof *gbuf); n_groups = getgroups (n, gbuf); if (n_groups < n) break;