* sec_acl.cc (setacl): Use the long time unused ACL_DEFAULT_SIZE

instead of a constant value.
	* security.cc (alloc_sd): Ditto.
This commit is contained in:
Corinna Vinschen
2010-06-22 09:54:36 +00:00
parent 90e4ed0550
commit c7b24005e6
3 changed files with 10 additions and 4 deletions

View File

@@ -454,8 +454,8 @@ alloc_sd (path_conv &pc, __uid32_t uid, __gid32_t gid, int attribute,
}
/* Initialize local access control list. */
PACL acl = (PACL) alloca (3072);
if (!InitializeAcl (acl, 3072, ACL_REVISION))
PACL acl = (PACL) alloca (ACL_DEFAULT_SIZE);
if (!InitializeAcl (acl, ACL_DEFAULT_SIZE, ACL_REVISION))
{
__seterrno ();
return NULL;