diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b45c474551..8d26b6df4a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2000-11-05 10:00 UTC+0100 JFL (mafact) + * source/vm/classes.c + * strcpy( &cString , ... in place of strcpy( cString, ... :-((( + 2000-11-05 10:00 UTC+0100 JFL (mafact) * source/vm/classes.c * work around due to the fact HB stack can move diff --git a/harbour/source/vm/classes.c b/harbour/source/vm/classes.c index d9a28798de..b41ce82a8b 100644 --- a/harbour/source/vm/classes.c +++ b/harbour/source/vm/classes.c @@ -1600,7 +1600,7 @@ HB_FUNC( __CLSINSTSUPER ) /*PHB_ITEM pString = hb_param( 1, HB_IT_STRING ); */ BOOL bFound = FALSE; - strcpy( &cString, hb_parc(1) ); + strcpy( cString, hb_parc(1) ); if( /*pString*/ hb_pcount() >= 1 ) {