Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Sep 2009 12:35:14 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r197269 - head/sys/ufs/ufs
Message-ID:  <200909171235.n8HCZEdd056697@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brooks
Date: Thu Sep 17 12:35:13 2009
New Revision: 197269
URL: http://svn.freebsd.org/changeset/base/197269

Log:
  Allocate space for the group array in a static credential used in
  the quota code.  One case was correctly handled in r194498, but
  this one was missed.
  
  PR:		kern/138657
  Tested by:	PR submitter
  MFC after:	3 days

Modified:
  head/sys/ufs/ufs/ufs_vnops.c

Modified: head/sys/ufs/ufs/ufs_vnops.c
==============================================================================
--- head/sys/ufs/ufs/ufs_vnops.c	Thu Sep 17 12:27:06 2009	(r197268)
+++ head/sys/ufs/ufs/ufs_vnops.c	Thu Sep 17 12:35:13 2009	(r197269)
@@ -1449,6 +1449,7 @@ ufs_mkdir(ap)
 	{
 #ifdef QUOTA
 		struct ucred ucred, *ucp;
+		gid_t ucred_group;
 		ucp = cnp->cn_cred;
 #endif
 		/*
@@ -1476,6 +1477,7 @@ ufs_mkdir(ap)
 				refcount_init(&ucred.cr_ref, 1);
 				ucred.cr_uid = ip->i_uid;
 				ucred.cr_ngroups = 1;
+				ucred.cr_groups = &ucred_group;
 				ucred.cr_groups[0] = dp->i_gid;
 				ucp = &ucred;
 			}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909171235.n8HCZEdd056697>