2007-09-28 23:57 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rdd/dbf1.c
    ! fixed typo in hb_dbfGetRowVer() reported by Mindaugas, many
      thanks for information, it was side effect of some experiments
      I hadn't cleanly removed before commit.
This commit is contained in:
Przemyslaw Czerpak
2007-09-28 21:57:23 +00:00
parent 423df1e50d
commit e7d97bea27
2 changed files with 7 additions and 1 deletions

View File

@@ -8,6 +8,12 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-09-28 23:57 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rdd/dbf1.c
! fixed typo in hb_dbfGetRowVer() reported by Mindaugas, many
thanks for information, it was side effect of some experiments
I hadn't cleanly removed before commit.
2007-09-28 19:26 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbcomp.h
* pass compile time -ks state to RT macro compiler flags.

View File

@@ -205,7 +205,7 @@ static HB_LONG hb_dbfGetRowVer( DBFAREAP pArea, USHORT uiField, HB_LONG * pValue
if( hb_fsRead( pArea->hDataFile, ( BYTE * ) &dbField,
sizeof( dbField ) ) == sizeof( dbField ) )
{
*pValue = HB_GET_LE_UINT32( &dbField.bReserved2 ) + 1;
*pValue = HB_GET_LE_UINT64( &dbField.bReserved2 ) + 1;
HB_PUT_LE_UINT64( dbField.bReserved2, *pValue );
hb_fsSeek( pArea->hDataFile, sizeof( DBFHEADER ) +
uiField * sizeof( DBFFIELD ), FS_SET );