2001-11-13 15:40 GMT-3 Horacio Roldan <harbour_ar@yahoo.com.ar>

This commit is contained in:
Horacio Dario Roldan Kasimatis
2001-11-13 18:55:28 +00:00
parent 52bfb16e4d
commit fee204d38c
2 changed files with 7 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2001-11-13 15:40 GMT-3 Horacio Roldan <harbour_ar@yahoo.com.ar>
* source/rdd/dbfcdx/dbfcdx1.c
! fixed eof() bug in hb_cdxGoTo
2001-11-12 21:25 GMT -3 Luiz Rafael Culik<culik@sl.conex.net>
* utils/hbmake/hbmake.prg
* Fixed an small bug that remain in previus update

View File

@@ -4520,6 +4520,9 @@ ERRCODE hb_cdxGoTo( CDXAREAP pArea, ULONG ulRecNo )
if( SUPER_GOTO( ( AREAP ) pArea, ulRecNo ) == FAILURE )
return FAILURE;
if ( pArea->fEof )
return FAILURE;
pTag = hb_cdxGetActiveTag( pArea->lpIndexes );
if ( ! pTag )
return SUCCESS;