2009-06-20 03:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/vm/runner.c
! fixed possible static function overloading
This commit is contained in:
@@ -17,6 +17,10 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-06-20 03:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/source/vm/runner.c
|
||||
! fixed possible static function overloading
|
||||
|
||||
2009-06-19 23:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* utils/hbmk2/hbmk2.prg
|
||||
+ .hbl files will be created relative to target executable
|
||||
|
||||
@@ -495,8 +495,8 @@ static PHRB_BODY hb_hrbLoad( const char * szHrbBody, ULONG ulBodySize, USHORT us
|
||||
{
|
||||
for( ul = 0; ul < pHrbBody->ulSymbols; ul++ )
|
||||
{
|
||||
if( pSymRead[ ul ].value.pCodeFunc != ( PHB_PCODEFUNC ) SYM_EXTERN &&
|
||||
( pSymRead[ ul ].scope.value & HB_FS_LOCAL ) != 0 )
|
||||
if( ( pSymRead[ ul ].scope.value &
|
||||
( HB_FS_LOCAL | HB_FS_STATIC ) ) == HB_FS_LOCAL )
|
||||
{
|
||||
pDynSym = hb_dynsymFind( pSymRead[ ul ].szName );
|
||||
if( pDynSym )
|
||||
|
||||
Reference in New Issue
Block a user