2003-04-18 14:10 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>

This commit is contained in:
Alexander S.Kresin
2003-04-18 10:10:23 +00:00
parent 0f9f696a87
commit b45ed36471
3 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,13 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-04-18 14:10 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbf1.c
! Bug fixed - there was unrecoverable error if file opening failed
due to access denied.
* source/rdd/dbfntx/dbfntx1.c
* Added reporting of OS error code if index opening failed
2003-04-17 15:50 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/pp/ppcore.c
! Fixed some problems with a long ( few Kb ) directives.

View File

@@ -1796,6 +1796,7 @@ ERRCODE hb_dbfOpen( DBFAREAP pArea, LPDBOPENINFO pOpenInfo )
if( pArea->hDataFile == FS_ERROR )
{
hb_xfree( pArea->szDataFileName );
pArea->szDataFileName = NULL;
return FAILURE;
}

View File

@@ -3929,6 +3929,7 @@ static ERRCODE ntxOrderListAdd( NTXAREAP pArea, LPDBORDERINFO pOrderInfo )
pError = hb_errNew();
hb_errPutGenCode( pError, EG_OPEN );
hb_errPutSubCode( pError, 1003 );
hb_errPutOsCode( pError, hb_fsError() );
hb_errPutDescription( pError, hb_langDGetErrorDesc( EG_OPEN ) );
hb_errPutFileName( pError, szFileName );
hb_errPutFlags( pError, EF_CANRETRY | EF_CANDEFAULT );