2009-06-09 10:54 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rtl/do.c
    ! fixed mistake in previous commit
This commit is contained in:
Przemyslaw Czerpak
2009-06-09 08:44:55 +00:00
parent 68225e9ad1
commit 5fb3589a14
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-09 10:54 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/do.c
! fixed mistake in previous commit
2009-06-09 10:38 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/vm/eval.c
* update number of parameters in HB_EXECMSG() to keep the HVM stack

View File

@@ -66,10 +66,11 @@
HB_FUNC( DO )
{
USHORT uiPCount = ( USHORT ) hb_pcount();
PHB_ITEM pSelf = NULL;
if( uiPCount > 0 )
{
PHB_ITEM pItem = hb_param( 1, HB_IT_ANY ), pSelf = NULL;
PHB_ITEM pItem = hb_param( 1, HB_IT_ANY );
if( HB_IS_STRING( pItem ) )
{