2009-10-02 15:14 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rdd/dbf1.c
    ! two fixes for 32bit record numbers
This commit is contained in:
Przemyslaw Czerpak
2009-10-02 13:14:33 +00:00
parent 0ce9b5a93c
commit c4cb75c9b6
2 changed files with 6 additions and 2 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-10-02 15:14 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rdd/dbf1.c
! two fixes for 32bit record numbers
2009-10-02 02:19 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbrdddbf.h
* harbour/include/hbrddnsx.h

View File

@@ -852,7 +852,7 @@ static void hb_dbfGetLockArray( DBFAREAP pArea, PHB_ITEM pItem )
hb_arrayNew( pItem, pArea->ulNumLocksPos );
for( ulCount = 0; ulCount < pArea->ulNumLocksPos; ulCount++ )
{
hb_arraySetNL( pItem, ulCount + 1, pArea->pLocksPos[ ulCount ] );
hb_arraySetNInt( pItem, ulCount + 1, pArea->pLocksPos[ ulCount ] );
}
}
@@ -3547,7 +3547,7 @@ static HB_ERRCODE hb_dbfRecInfo( DBFAREAP pArea, PHB_ITEM pRecID, USHORT uiInfoT
break;
case DBRI_RECNO:
hb_itemPutNL( pInfo, ulRecNo );
hb_itemPutNInt( pInfo, ulRecNo );
break;
case DBRI_UPDATED: