mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
Uncomment call to FlushConsoleInputBuffer in FlushFileBuffers.
This commit is contained in:
parent
580bce7a31
commit
a8f025fd94
@ -681,9 +681,7 @@ BOOL WINAPI FlushFileBuffers( HANDLE hFile )
|
||||
if (is_console_handle( hFile ))
|
||||
{
|
||||
/* this will fail (as expected) for an output handle */
|
||||
/* FIXME: wait until FlushFileBuffers is moved to dll/kernel */
|
||||
/* return FlushConsoleInputBuffer( hFile ); */
|
||||
return TRUE;
|
||||
return FlushConsoleInputBuffer( hFile );
|
||||
}
|
||||
nts = NtFlushBuffersFile( hFile, &ioblk );
|
||||
if (nts != STATUS_SUCCESS)
|
||||
|
Loading…
Reference in New Issue
Block a user