4.54 beta

This commit is contained in:
Igor Pavlov
2007-09-04 00:00:00 +00:00
committed by Kornel Lesiński
parent 051769bbc5
commit b82f80647d
56 changed files with 558 additions and 202 deletions

View File

@@ -75,7 +75,7 @@ bool CStdInStream::Eof()
int CStdInStream::GetChar()
{
int c = getc(_stream);
int c = fgetc(_stream); // getc() doesn't work in BeOS?
if(c == EOF && !Eof())
throw kReadErrorMessage;
return c;