From 1e3a150969d4427c117f0510bee159dbdfe374b6 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Thu, 20 Feb 2014 15:46:48 +0000 Subject: [PATCH] * grp.cc (getgrouplist): Fix previous fix so ret is only set to ngroups if ngroups isn't too small. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/grp.cc | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 506a63bcd..e54075b01 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2014-02-20 Corinna Vinschen + + * grp.cc (getgrouplist): Fix previous fix so ret is only set to ngroups + if ngroups isn't too small. + 2014-02-20 Corinna Vinschen * grp.cc (get_groups): Don't add gid to list if it's ILLEGAL_GID. diff --git a/winsup/cygwin/grp.cc b/winsup/cygwin/grp.cc index 665cb173d..c82efc90b 100644 --- a/winsup/cygwin/grp.cc +++ b/winsup/cygwin/grp.cc @@ -624,9 +624,11 @@ getgrouplist (const char *user, gid_t gid, gid_t *groups, int *ngroups) groups[cnt] = grp->gr_gid; ++cnt; } + *ngroups = cnt; if (cnt > *ngroups) ret = -1; - ret = *ngroups = cnt; + else + ret = cnt; syscall_printf ( "%d = getgrouplist(%s, %u, %p, %d)", ret, user, gid, groups, *ngroups); -- 2.43.5