2009-12-22 16:19 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/rddsql/sddfb/fbirddd.c
    ! Fixed warning reported by linux/watcom.
This commit is contained in:
Viktor Szakats
2009-12-22 15:19:29 +00:00
parent 22990dabb2
commit 7b716bc837
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-12-22 16:19 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/rddsql/sddfb/fbirddd.c
! Fixed warning reported by linux/watcom.
2009-12-22 16:14 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* package/winuni/RELNOTES
* Adjusted sizes.

View File

@@ -542,7 +542,7 @@ static HB_ERRCODE fbGoTo( SQLBASEAREAP pArea, ULONG ulRecNo )
}
}
if ( ulRecNo <= 0 || ulRecNo > pArea->ulRecCount )
if ( ulRecNo == 0 || ulRecNo > pArea->ulRecCount )
{
pArea->pRecord = pArea->pRow[ 0 ];
pArea->bRecordFlags = pArea->pRowFlags[ 0 ];