(getgroups): Don't use xrealloc, since we don't need the buffer
[gnulib.git] / lib / getgroups.c
1 /* provide consistent interface to getgroups for systems that don't allow N==0
2    Copyright (C) 1996, 1999, 2003 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* written by Jim Meyering */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <sys/types.h>
23 #include <errno.h>
24 #include <stdlib.h>
25
26 #include "xalloc.h"
27
28 /* On at least Ultrix 4.3 and NextStep 3.2, getgroups (0, 0) always fails.
29    On other systems, it returns the number of supplemental groups for the
30    process.  This function handles that special case and lets the system-
31    provided function handle all others. */
32
33 int
34 getgroups (int n, GETGROUPS_T *group)
35 {
36   int n_groups;
37   GETGROUPS_T *gbuf;
38   int saved_errno;
39
40 #undef getgroups
41
42   if (n != 0)
43     return getgroups (n, group);
44
45   n = 20;
46   while (1)
47     {
48       /* No need to worry about address arithmetic overflow here,
49          since the ancient systems that we're running on have low
50          limits on the number of secondary groups.  */
51       gbuf = xmalloc (gbuf, n * sizeof *gbuf);
52       n_groups = getgroups (n, gbuf);
53       if (n_groups < n)
54         break;
55       free (gbuf);
56       n += 10;
57     }
58
59   saved_errno = errno;
60   free (gbuf);
61   errno = saved_errno;
62
63   return n_groups;
64 }