mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
Avoid segfault with overlapped WriteFile() calls.
This commit is contained in:
parent
55f9b75163
commit
ef79c38e76
@ -1740,9 +1740,9 @@ static BOOL FILE_WriteFileEx(HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
|
||||
goto error;
|
||||
}
|
||||
|
||||
ovp->async.ops = &fileio_async_ops;
|
||||
ovp->async.ops = ( lpCompletionRoutine ? &fileio_async_ops : &fileio_nocomp_async_ops );
|
||||
ovp->async.handle = hFile;
|
||||
ovp->async.fd = FILE_GetUnixHandle( hFile, GENERIC_WRITE );
|
||||
ovp->async.fd = fd;
|
||||
ovp->async.type = ASYNC_TYPE_WRITE;
|
||||
ovp->async.func = FILE_AsyncWriteService;
|
||||
ovp->lpOverlapped = overlapped;
|
||||
|
Loading…
Reference in New Issue
Block a user