Fixed unused check.

This commit is contained in:
Armin Novak 2016-02-03 11:22:27 +01:00
parent 97125094f8
commit a1617c734c
1 changed files with 0 additions and 3 deletions

View File

@ -194,9 +194,6 @@ static BOOL FileWrite(PVOID Object, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrit
if (io_status != 1)
return FALSE;
if ((io_status < 0) && (errno == EWOULDBLOCK))
io_status = 0;
*lpNumberOfBytesWritten = nNumberOfBytesToWrite;
return TRUE;
}