Added FlmReadFully() and enhanced the base64 decoder.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1015 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2007-02-08 21:31:03 +00:00
parent 5b0a6fe8b5
commit cc1979b4cf
4 changed files with 85 additions and 25 deletions

View File

@@ -589,7 +589,7 @@ RCODE F_FileHdl::lowLevelRead(
if( aio_read( pAIO) != 0)
#endif
{
if( errno == EAGAIN || errno == ENOSYS)
if( errno == EAGAIN || errno == ENOSYS || errno == EINVAL)
{
FLMINT iBytesRead;
@@ -804,7 +804,7 @@ RCODE F_FileHdl::lowLevelWrite(
if( aio_write( pAIO) != 0)
#endif
{
if( errno == EAGAIN || errno == ENOSYS)
if( errno == EAGAIN || errno == ENOSYS || errno == EINVAL)
{
FLMINT iBytesWritten;