2011-08-04 02:43 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/vm/hvm.c
    * small code modification to pacify warning
This commit is contained in:
Przemyslaw Czerpak
2011-08-04 00:44:09 +00:00
parent 1eea547516
commit e33d2bb9a2
2 changed files with 6 additions and 2 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-08-04 02:43 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/hvm.c
* small code modification to pacify warning
2011-08-04 01:51 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/runner.c
* do not execute EXIT procedures inside HB_HRBDO() call.

View File

@@ -8844,9 +8844,9 @@ HB_BOOL hb_vmRequestReenterExt( void )
#if defined( HB_MT_VM )
HB_STACK_TLS_PRELOAD
uiAction = hb_stackId() == NULL ? HB_VMSTACK_REQUESTED : 0;
if( uiAction )
if( hb_stackId() == NULL )
{
uiAction = HB_VMSTACK_REQUESTED;
/* TODO: add protection against executing hb_threadStateNew()
* during GC pass
*/