diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 618afae05c..c765a09793 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2005-09-26 12:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * xharbour/source/rdd/dbcmd.c + ! fixed bug I introduced in RDDLIST() + 2005-09-25 21:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) - harbour/source/codepage/cdpsrwin.c * harbour/make_tgz.sh diff --git a/harbour/source/rdd/dbcmd.c b/harbour/source/rdd/dbcmd.c index 95b8243052..2e5db0bc67 100644 --- a/harbour/source/rdd/dbcmd.c +++ b/harbour/source/rdd/dbcmd.c @@ -3253,7 +3253,7 @@ HB_FUNC( RDDLIST ) { if( ( uiType == 0 ) || ( s_RddList[ uiCount ]->uiType == uiType ) ) { - hb_itemPutC( hb_arrayGetItemPtr( pRddArray, uiIndex++ ), s_RddList[ uiCount ]->szName ); + hb_itemPutC( hb_arrayGetItemPtr( pRddArray, ++uiIndex ), s_RddList[ uiCount ]->szName ); } } hb_itemReturnForward( pRddArray );