mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
- ProbeForRead/Write Length argument is a SIZE_T, not a ULONG
svn path=/trunk/; revision=36713
This commit is contained in:
parent
1e1d996268
commit
c74e4990a1
2 changed files with 4 additions and 4 deletions
|
@ -7655,7 +7655,7 @@ VOID
|
|||
NTAPI
|
||||
ProbeForRead(
|
||||
IN CONST VOID *Address,
|
||||
IN ULONG Length,
|
||||
IN SIZE_T Length,
|
||||
IN ULONG Alignment);
|
||||
|
||||
NTKERNELAPI
|
||||
|
@ -7663,7 +7663,7 @@ VOID
|
|||
NTAPI
|
||||
ProbeForWrite(
|
||||
IN PVOID Address,
|
||||
IN ULONG Length,
|
||||
IN SIZE_T Length,
|
||||
IN ULONG Alignment);
|
||||
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@ InterlockedExchangeAdd(IN OUT LONG volatile *Addend,
|
|||
VOID
|
||||
NTAPI
|
||||
ProbeForRead(IN CONST VOID *Address,
|
||||
IN ULONG Length,
|
||||
IN SIZE_T Length,
|
||||
IN ULONG Alignment)
|
||||
{
|
||||
PAGED_CODE();
|
||||
|
@ -136,7 +136,7 @@ ProbeForRead(IN CONST VOID *Address,
|
|||
VOID
|
||||
NTAPI
|
||||
ProbeForWrite(IN PVOID Address,
|
||||
IN ULONG Length,
|
||||
IN SIZE_T Length,
|
||||
IN ULONG Alignment)
|
||||
{
|
||||
ULONG_PTR Last, Current = (ULONG_PTR)Address;
|
||||
|
|
Loading…
Reference in a new issue