mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 00:20:34 +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))
|
if (!NT_SUCCESS(lpOverlapped->Internal))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue