2002-10-20 16:18 UTC-0500 Paul Tucker <ptucker@sympatico.ca>

This commit is contained in:
Paul Tucker
2002-10-20 20:20:41 +00:00
parent a5b953fd96
commit 0a2edfe6e0
2 changed files with 8 additions and 3 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-10-20 16:18 UTC-0500 Paul Tucker <ptucker@sympatico.ca>
* source/rdd/dbfntx/dbfntx1.c
! removed unused pLastPages
2002-10-20 15:16 UTC-0500 Paul Tucker <ptucker@sympatico.ca>
* source/rdd/dbcmd.c
! Just a few changes for efficiency...

View File

@@ -1240,7 +1240,7 @@ static LPPAGEINFO hb_ntxPageLoad( LPTAGINFO pTag, ULONG ulOffset )
if( !bReplace )
{
LPPAGEINFO pLastPage;
/* LPPAGEINFO pLastPage; ? */
if( pTag->ulPages == pTag->ulPagesDepth )
{
@@ -1325,7 +1325,7 @@ static void hb_ntxPageFree( LPTAGINFO pTag, BOOL lFull )
static LPPAGEINFO hb_ntxPageNew( LPTAGINFO pTag )
{
LPPAGEINFO pPage, pLastPage;
LPPAGEINFO pPage;
if( pTag->Owner->NextAvail > 0 )
{
@@ -2068,7 +2068,8 @@ static void hb_ntxWritePage( LPTAGINFO pTag, LPNTXSORTINFO pSortInfo, char* buff
static void hb_ntxRootPage( LPTAGINFO pTag, LPNTXSORTINFO pSortInfo, LPSORTITEM pKey, ULONG* lpArray, USHORT level )
{
USHORT i, maxKeys = lpArray[level+1];
USHORT i;
ULONG maxKeys = lpArray[level+1];
LPNTXBUFFER itemlist;
LPNTXITEM item;