mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
check for null (fixes ole32 compobj winetest crash)
svn path=/trunk/; revision=38992
This commit is contained in:
parent
775bff8f2e
commit
0beccb3e1e
1 changed files with 3 additions and 1 deletions
|
@ -184,7 +184,9 @@ GetOverlappedResult (
|
|||
}
|
||||
}
|
||||
|
||||
*lpNumberOfBytesTransferred = lpOverlapped->InternalHigh;
|
||||
|
||||
if (lpNumberOfBytesTransferred)
|
||||
*lpNumberOfBytesTransferred = lpOverlapped->InternalHigh;
|
||||
|
||||
if (!NT_SUCCESS(lpOverlapped->Internal))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue