2002-09-21 12:20 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>

This commit is contained in:
Alexander S.Kresin
2002-09-21 08:16:47 +00:00
parent 30bb771c29
commit 7f0cbf15e5
2 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-09-21 12:20 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
! Bug fixed, related to seeking while set deleted on is set
2002-09-20 23:55 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
! Bug fixed, related to softseek

View File

@@ -706,6 +706,11 @@ static int hb_ntxTagFindCurrentKey( LPTAGINFO pTag, LPPAGEINFO pPage, LPKEYINFO
}
else if( k <= 0 && pPage->CurKey < pPage->uiKeys )
pTag->stackLevel = 0;
if( k <= 0 && pPage->CurKey < pPage->uiKeys && pTag->CurKeyInfo->Tag == 0 )
{
pTag->CurKeyInfo->Xtra = p->rec_no;
pTag->CurKeyInfo->Tag = pPage->Page;
}
}
if( k > 0 && ++pPage->CurKey <= pPage->uiKeys )
{