[KERNEL32]

- ReadDirectoryChangesW: Treat the OVERLAPPED structure as an IO_STATUS_BLOCK, not one of its fields.

svn path=/trunk/; revision=50284
This commit is contained in:
Roel Messiant 2011-01-04 17:26:25 +00:00
parent ca2b0ca3a7
commit 7b455367ff

View file

@ -219,7 +219,7 @@ ReadDirectoryChangesW(
EventHandle,
IoApcRoutine,
CompletionRoutine, /* ApcContext */
lpOverlapped ? (PIO_STATUS_BLOCK)lpOverlapped->Internal : &IoStatus,
lpOverlapped ? (PIO_STATUS_BLOCK) lpOverlapped : &IoStatus,
lpBuffer,
nBufferLength,
dwNotifyFilter,