2000-11-05 10:00 UTC+0100 JFL (mafact) <jfl@mafact.com>

This commit is contained in:
Jean-Francois Lefebvre
2000-11-05 16:56:35 +00:00
parent 0e65b01d2e
commit 41fe9b6ac9
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2000-11-05 10:00 UTC+0100 JFL (mafact) <jfl@mafact.com>
* source/vm/classes.c
* strcpy( &cString , ... in place of strcpy( cString, ... :-(((
2000-11-05 10:00 UTC+0100 JFL (mafact) <jfl@mafact.com>
* source/vm/classes.c
* work around due to the fact HB stack can move

View File

@@ -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 )
{