Commit a8f025fd authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Uncomment call to FlushConsoleInputBuffer in FlushFileBuffers.

parent 580bce7a
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment