From 0226372d6ae5bae78b131decb021b35c390a91c8 Mon Sep 17 00:00:00 2001 From: Bruno Cantero Date: Tue, 27 Jul 1999 17:26:16 +0000 Subject: [PATCH] ChangeLogTag:19990727-19:18 GMT+1 Bruno Cantero --- harbour/ChangeLog | 4 ++++ harbour/source/rdd/dbfntx1.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 76ded99c9a..9a1d226165 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +19990727-19:18 GMT+1 Bruno Cantero + * source/rdd/dbfntx1.c + Fixed a bug + 19990727-19:08 GMT+1 Bruno Cantero * source/rtl/natmsg/*.c Added #include to these files diff --git a/harbour/source/rdd/dbfntx1.c b/harbour/source/rdd/dbfntx1.c index bf3ad2b63b..23bd7ad6cb 100644 --- a/harbour/source/rdd/dbfntx1.c +++ b/harbour/source/rdd/dbfntx1.c @@ -117,8 +117,10 @@ HARBOUR HB_REQUEST_DBFNTX1( void ) HARBOUR HB_DBFNTX_GETFUNCTABLE( void ) { RDDFUNCS * pTable; + USHORT * uiCount; - *( USHORT * ) hb_parnl( 1 ) = RDDFUNCSCOUNT; + uiCount = ( USHORT * ) hb_parnl( 1 ); + * uiCount = RDDFUNCSCOUNT; pTable = ( RDDFUNCS * ) hb_parnl( 2 ); if( pTable ) hb_rddInherit( pTable, &ntxTable, &ntxSuper, 0 );