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

This commit is contained in:
Alexander S.Kresin
2002-09-22 08:23:55 +00:00
parent 7f0cbf15e5
commit 48a682b10b
2 changed files with 8 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-09-22 12:25 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
! Bug fixed in key append
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

View File

@@ -3268,7 +3268,7 @@ static ERRCODE ntxGoHot( NTXAREAP pArea )
HB_TRACE(HB_TR_DEBUG, ("ntxGoHot(%p)", pArea));
if( SUPER_GOHOT( ( AREAP ) pArea ) == SUCCESS )
if( SUPER_GOHOT( ( AREAP ) pArea ) == SUCCESS && !pArea->fNtxAppend )
{
pTag = pArea->lpNtxTag;
while( pTag )
@@ -3888,6 +3888,9 @@ static ERRCODE ntxOrderListClear( NTXAREAP pArea )
HB_TRACE(HB_TR_DEBUG, ("ntxOrderListClear(%p)", pArea));
if( SELF_GOCOLD( ( AREAP ) pArea ) == FAILURE )
return FAILURE;
pTag = pArea->lpNtxTag;
while( pTag )
{