mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
Joseph Chiu <josephc@idealab.com> found an off-by-one bug. oops!
This commit is contained in:
parent
a71389bfe8
commit
e85dbfdd80
@ -104,7 +104,7 @@ int initgroups(__const char *user, gid_t gid)
|
||||
group_list = (gid_t *) realloc(group_list, num_groups *
|
||||
sizeof(gid_t *));
|
||||
#endif
|
||||
group_list[num_groups] = group->gr_gid;
|
||||
group_list[num_groups-1] = group->gr_gid;
|
||||
}
|
||||
tmp_mem++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user