mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
NtSetInformationObject: OBJECT_HANDLE_ATTRIBUTE_INFORMATION is just made of BOOLEANs, so it doesn't need ULONG alignment.
svn path=/trunk/; revision=39986
This commit is contained in:
parent
36277461a1
commit
9c84f62cd4
1 changed files with 1 additions and 1 deletions
|
@ -1665,7 +1665,7 @@ NtSetInformationObject(IN HANDLE ObjectHandle,
|
|||
{
|
||||
ProbeForRead(ObjectInformation,
|
||||
sizeof(OBJECT_HANDLE_ATTRIBUTE_INFORMATION),
|
||||
sizeof(ULONG));
|
||||
sizeof(BOOLEAN));
|
||||
Context.Information = *(POBJECT_HANDLE_ATTRIBUTE_INFORMATION)
|
||||
ObjectInformation;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue