2000-10-13 11:28 GMT+3 Alexander Kresin <alex@belacy.belgorod.su>

This commit is contained in:
Alexander S.Kresin
2000-10-13 07:31:00 +00:00
parent 9222387549
commit b22e7dab37
3 changed files with 9 additions and 6 deletions

View File

@@ -1,3 +1,9 @@
2000-10-13 11:28 GMT+3 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfcdx/dbfcdx1.c
* source/rdd/dbcmd.c
* source/include/hbrddcdx.h
* fixed some warnings, added HB_TRACE_...
2000-10-12 23:50 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* include/hbver.h
% Bumped the revision code to "h" and the date to 2000-10-12

View File

@@ -166,7 +166,7 @@ typedef struct _CDXINDEX
LONG NextAvail;
// review this...
LPCDXTAG TagList;
struct _INDEXINFO * pNext; /* The next index in the list */
struct _CDXINDEX * pNext; /* The next index in the list */
} CDXINDEX;
typedef CDXINDEX * LPCDXINDEX;

View File

@@ -522,7 +522,7 @@ static void hb_cdxWriteMemo( CDXAREAP pArea, ULONG ulBlock, PHB_ITEM pItem, ULON
BOOL bWriteBlocks;
HB_TRACE(HB_TR_DEBUG, ("hb_cdxWriteMemo(%p, %lu, %p, %lu, %p, %hu)", pArea, ulBlock,
pItem, ulLen, ulNewBlock, uiType));
pItem, ulLen, ulStoredBlock, uiType));
uiBloksRequired = ( USHORT ) ( ulLen + sizeof( MEMOBLOCK ) + pArea->uiMemoBlockSize - 1 ) /
pArea->uiMemoBlockSize;
@@ -1228,10 +1228,7 @@ ERRCODE hb_cdxOpenMemFile( CDXAREAP pArea, LPDBOPENINFO pOpenInfo )
bRetry = FALSE;
} while( bRetry );
if( pError )
{
hb_errRelease( pError );
pError = NULL;
}
if( pArea->hMemoFile == FS_ERROR )
return FAILURE;
@@ -3977,7 +3974,7 @@ static ERRCODE hb_cdxSkipRaw( CDXAREAP pArea, LONG lToSkip )
//BOOL fTop; /* TRUE if "top" */
//BOOL fBottom; /* TRUE if "bottom" */
SUPER_GOBOTTOM( ( AREAP ) pArea );
SUPER_SKIPRAW( pArea, 1 );
SUPER_SKIPRAW( ( AREAP ) pArea, 1 );
pArea->fEof = pTag->TagEOF = TRUE;
}
}