20000503-22:43 GMT+1 Victor Szakats <info@szelvesz.hu>

This commit is contained in:
Viktor Szakats
2000-05-03 20:39:41 +00:00
parent 7da8b5fc2a
commit ba32c1fa9d
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
20000503-22:43 GMT+1 Victor Szakats <info@szelvesz.hu>
* source/rtl/filesys.c
! Cast added for MSVC.
20000503-01:45 GMT-8 Ron Pinkas <Ron@Profit-Master.com>
* include/hberrors.h

View File

@@ -1181,7 +1181,7 @@ USHORT hb_fsCurDirBuff( USHORT uiDrive, BYTE * pbyBuffer, ULONG ulLen )
/* Strip the trailing (back)slash if there's one */
{
ULONG ulLen = strlen( pbyBuffer );
ULONG ulLen = strlen( ( char * ) pbyBuffer );
if( strchr( OS_PATH_DELIMITER_LIST, pbyBuffer[ ulLen - 1 ] ) )
pbyBuffer[ ulLen - 1 ] = '\0';