2000-05-31 23:57 UTC+0100 Victor Szakats <info@szelvesz.hu>

This commit is contained in:
Viktor Szakats
2000-05-31 21:53:43 +00:00
parent cc8e3b98d6
commit ce08e02654
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2000-05-31 23:57 UTC+0100 Victor Szakats <info@szelvesz.hu>
* source/vm/itemapi.c
! hb_itemNew() fixed for non NULL pNull values.
Thanks go to Janica Lubos for the fix.
2000-05-31 23:43 UTC+0100 Victor Szakats <info@szelvesz.hu>
* contrib/hbclip/make_clp.bat

View File

@@ -314,7 +314,10 @@ PHB_ITEM hb_itemNew( PHB_ITEM pNull )
pItem = ( PHB_ITEM ) hb_xgrab( sizeof( HB_ITEM ) );
if( pNull )
{
pItem->type = HB_IT_NIL;
hb_itemCopy( pItem, pNull );
}
else
{
memset( pItem, 0, sizeof( HB_ITEM ) );