mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 01:53:39 +00:00
patch from w3seek : Bug#: 1671 : RTL: Fix checking the SACL data area in the Win64 version of RtlSelfRelativeToAbsoluteSD2
svn path=/trunk/; revision=23033
This commit is contained in:
parent
1d5bff3624
commit
c80f9e7cea
1 changed files with 1 additions and 1 deletions
|
@ -837,7 +837,7 @@ RtlSelfRelativeToAbsoluteSD2(IN OUT PSECURITY_DESCRIPTOR SelfRelativeSD,
|
|||
{
|
||||
if (((ULONG_PTR)pSacl < (ULONG_PTR)DataStart) || DataStart == NULL)
|
||||
DataStart = pSacl;
|
||||
if (((ULONG_PTR)pSacl + DaclLength > (ULONG_PTR)DataEnd) || DataEnd == NULL)
|
||||
if (((ULONG_PTR)pSacl + SaclLength > (ULONG_PTR)DataEnd) || DataEnd == NULL)
|
||||
DataEnd = (PVOID)((ULONG_PTR)pSacl + SaclLength);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue