mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
IntReadConsole: don't tell we failed just because we didn't fill up the read buffer!
svn path=/trunk/; revision=12161
This commit is contained in:
parent
ac61295ec2
commit
0bf2982f43
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: console.c,v 1.83 2004/11/14 18:47:09 hbirr Exp $
|
||||
/* $Id: console.c,v 1.84 2004/12/17 00:44:46 gdalsnes Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -1290,7 +1290,7 @@ IntReadConsole(HANDLE hConsoleInput,
|
|||
*lpNumberOfCharsRead = CharsRead;
|
||||
}
|
||||
|
||||
return (nNumberOfCharsToRead == 0);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue