Abort on input error.

This commit is contained in:
Alexandre Julliard 1999-03-24 15:07:20 +00:00
parent d3354d04f7
commit 833f3aec1a

View file

@ -293,7 +293,10 @@ TTYget()
while ( ( retv = read( 0, &c, (size_t)1 ) ) == -1 )
{
if ( errno != EINTR )
{
perror( "read" );
return EOF;
}
}
return retv == 1 ? c : EOF;