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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user