summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_misc.c
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-01-14 09:33:16 -0200
committerRenato Botelho <renato@netgate.com>2016-01-14 09:33:16 -0200
commit58b7eab7d39d983cc70f6f1d611f00470a76fca1 (patch)
treebb36653da0e7ff3eb5ec994f6923513a77973ba0 /sys/compat/linux/linux_misc.c
parent3e0bf52f358eb969d165c4b1e54942ee94cf2c8d (diff)
parente9becf4ed022809a585e21a1d3da8a3a233ff648 (diff)
downloadFreeBSD-src-58b7eab7d39d983cc70f6f1d611f00470a76fca1.zip
FreeBSD-src-58b7eab7d39d983cc70f6f1d611f00470a76fca1.tar.gz
Merge remote-tracking branch 'origin/stable/10' into devel
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
-rw-r--r--sys/compat/linux/linux_misc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index d87d786..8f2a687 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -1302,9 +1302,11 @@ linux_setgroups(struct thread *td, struct linux_setgroups_args *args)
if (error)
goto out;
newcred = crget();
+ crextend(newcred, ngrp + 1);
p = td->td_proc;
PROC_LOCK(p);
- oldcred = crcopysafe(p, newcred);
+ oldcred = p->p_ucred;
+ crcopy(newcred, oldcred);
/*
* cr_groups[0] holds egid. Setting the whole set from
OpenPOWER on IntegriCloud