mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
remove redundant NULL check
This commit is contained in:
parent
bb04506dc8
commit
6826441a02
@ -661,15 +661,11 @@ int initgroups(const char *user, gid_t gid)
|
|||||||
int ngroups;
|
int ngroups;
|
||||||
gid_t *group_list = getgrouplist_internal(&ngroups, user, gid);
|
gid_t *group_list = getgrouplist_internal(&ngroups, user, gid);
|
||||||
|
|
||||||
if (!group_list)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
ngroups = setgroups(ngroups, group_list);
|
ngroups = setgroups(ngroups, group_list);
|
||||||
free(group_list);
|
free(group_list);
|
||||||
return ngroups;
|
return ngroups;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: uclibc needs this ported to it! */
|
|
||||||
int getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups)
|
int getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups)
|
||||||
{
|
{
|
||||||
int ngroups_old = *ngroups;
|
int ngroups_old = *ngroups;
|
||||||
|
Loading…
Reference in New Issue
Block a user