projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d82b470
)
(getgroups): xmalloc takes one argument, not two.
author
Jim Meyering
<jim@meyering.net>
Wed, 3 Dec 2003 10:28:39 +0000
(10:28 +0000)
committer
Jim Meyering
<jim@meyering.net>
Wed, 3 Dec 2003 10:28:39 +0000
(10:28 +0000)
lib/getgroups.c
patch
|
blob
|
history
diff --git
a/lib/getgroups.c
b/lib/getgroups.c
index
4ffa4e0
..
0f951b7
100644
(file)
--- 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;