2017-09-07 08:38 UTC Viktor Szakats (vszakats users.noreply.github.com)
* contrib/hbct/charsprd.c
* contrib/hbct/dattime3.c
* contrib/hbct/expand.c
* contrib/hbct/misc2.c
* contrib/hbct/screen2.c
* contrib/hbcurl/core.c
* contrib/hbfship/strpeek.c
* contrib/hbnetio/netiocli.c
* contrib/hbwin/olecore.c
* contrib/rddads/adsx.c
* contrib/rddads/rddads.h
* contrib/rddsql/sqlmix.c
* contrib/sddmy/core.c
* contrib/sddpg/core.c
* contrib/xhb/hbcompat.h
* contrib/xhb/hbxml.c
* contrib/xhb/xhb.h
* src/common/hbstr.c
* src/compiler/harbour.y
* src/compiler/harbour.yyc
* src/compiler/hbcmplib.c
* src/macro/macrolex.c
* src/rdd/dbffpt/dbffpt1.c
* src/rdd/hbsix/sxcompr.c
* src/rdd/hbsix/sxcrypt.c
* src/rdd/hbsix/sxtable.c
* src/rdd/hsx/hsx.c
* src/rtl/cdpapi.c
* src/rtl/gtcrs/gtcrs.c
* src/rtl/gtxwc/gtxwc.c
* src/rtl/hbtoken.c
* src/rtl/net.c
* src/rtl/netusr.c
* src/vm/hvm.c
* update HB_SIZE variable name prefixes to use `n` instead of `ul`
% adjust some variables
% sync variables scopes and some other minor things with 3.4 fork
This commit is contained in:
@@ -5784,12 +5784,13 @@ static void hb_vmPushAParams( void )
|
||||
pArray = hb_stackItemFromTop( -1 );
|
||||
if( HB_IS_ARRAY( pArray ) )
|
||||
{
|
||||
HB_SIZE nLen = pArray->item.asArray.value->nLen, ul;
|
||||
HB_SIZE nLen = pArray->item.asArray.value->nLen;
|
||||
|
||||
if( nLen )
|
||||
{
|
||||
for( ul = 1; ul < nLen; ++ul )
|
||||
hb_vmPush( pArray->item.asArray.value->pItems + ul );
|
||||
HB_SIZE nPos;
|
||||
for( nPos = 1; nPos < nLen; ++nPos )
|
||||
hb_vmPush( pArray->item.asArray.value->pItems + nPos );
|
||||
pCount = hb_stackAllocItem();
|
||||
hb_itemCopy( pCount, pArray->item.asArray.value->pItems );
|
||||
hb_itemMove( pArray, pCount );
|
||||
|
||||
Reference in New Issue
Block a user