*** empty log message ***

This commit is contained in:
Paul Tucker
1999-09-01 18:18:38 +00:00
parent 2f6b1a5b1a
commit abf7ca521b
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
19990901-14:05 EDT Paul Tucker <ptucker@sympatico.ca>
* source/rtl/filesys.c
* hb_fsread() -> account for the possibility that num read is less
than requested. (It was staying in the while loop forever without this)
19990901-17:59 GMT+1 Bruno Cantero <bruno@issnet.net>
* source/rdd/dbcmd.c
+ Added Lock() function

View File

@@ -345,6 +345,10 @@ ULONG hb_fsRead ( FHANDLE hFileHandle, BYTE * pBuff, ULONG ulCount )
break;
ulReadTotal += ( ULONG ) uiRead;
if( uiRead < ulCount - ulReadTotal )
break;
}
s_uiErrorLast = errno;