mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
Fixed ACE size while decoding a Posix ACL
This commit is contained in:
parent
6bfd3ed546
commit
94d299b848
@ -1724,6 +1724,7 @@ return (0);
|
||||
grants = WORLD_RIGHTS;
|
||||
} else {
|
||||
sid = adminsid;
|
||||
sidsz = ntfs_sid_size(sid);
|
||||
rootuser = TRUE;
|
||||
grants = WORLD_RIGHTS & ~ROOT_OWNER_UNMARK;
|
||||
}
|
||||
@ -1776,8 +1777,8 @@ return (0);
|
||||
sid = adminsid;
|
||||
rootgroup = TRUE;
|
||||
}
|
||||
sidsz = ntfs_sid_size(sid);
|
||||
if (sid) {
|
||||
sidsz = ntfs_sid_size(sid);
|
||||
/*
|
||||
* Insert denial of complement of mask for
|
||||
* each group
|
||||
|
Loading…
Reference in New Issue
Block a user