Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-08-01 05:31:17 +0400
committerEric Andersen <andersen@codepoet.org>2002-08-01 05:31:17 +0400
commite85dbfdd80eb5f7674b17c86589d41007cc69688 (patch)
tree95bebadc60b394030c60a91caffc76a67714b6f4 /libpwdgrp
parenta71389bfe8b7a047ef6da555f274d124318977c9 (diff)
Joseph Chiu <josephc@idealab.com> found an off-by-one bug. oops!
Diffstat (limited to 'libpwdgrp')
-rw-r--r--libpwdgrp/initgroups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/initgroups.c b/libpwdgrp/initgroups.c
index 57b25f343..22ba6eb1e 100644
--- a/libpwdgrp/initgroups.c
+++ b/libpwdgrp/initgroups.c
@@ -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++;
}