2002-06-22 20:25 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>

This commit is contained in:
Alexander S.Kresin
2002-06-22 16:20:33 +00:00
parent cab1ef24fe
commit 1bc2fc0ce2
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-06-22 20:25 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
! Bug fixed in skipping, when both Bof and Eof are true.
2002-06-21 17:15 UTC-0300 Walter Negro <anegro@overnet.com.ar>
* source/rtl/tgetlist.prg
+ Add #include tbrowse.ch for TBrowse defines.

View File

@@ -3098,7 +3098,7 @@ static ERRCODE ntxSkipRaw( NTXAREAP pArea, LONG lToSkip )
BOOL lContinue = FALSE;
ULONG ulRecNo = pArea->ulRecNo;
if ( pArea->fBof )
if ( pArea->fBof && !pArea->fEof )
SELF_GOTOP( ( AREAP ) pArea );
if ( lToSkip == 0 )