2011-04-05 15:33 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/vm/hvm.c
    ! fixed missing write unreferencing in my last modification
This commit is contained in:
Przemyslaw Czerpak
2011-04-05 13:33:12 +00:00
parent 01962a5f93
commit 8f4b5fc7b9
2 changed files with 5 additions and 2 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-04-05 15:33 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/hvm.c
! fixed missing write unreferencing in my last modification
2011-04-05 08:41 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/hvm.c
* extended item references created by hb_vmPushItemRef() so they

View File

@@ -8240,8 +8240,7 @@ static PHB_ITEM hb_vmItemRefRead( PHB_ITEM pRefer )
static PHB_ITEM hb_vmItemRefWrite( PHB_ITEM pRefer, PHB_ITEM pSource )
{
HB_SYMBOL_UNUSED( pSource );
return ( ( PHB_ITMREF ) pRefer->item.asExtRef.value )->value;
return hb_itemUnRefWrite( ( ( PHB_ITMREF ) pRefer->item.asExtRef.value )->value, pSource );
}
static void hb_vmItemRefCopy( PHB_ITEM pDest )