Skip to content

Commit d5057bb

Browse files
committed
0: fix for prev
1 parent 597d689 commit d5057bb

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Source/uPSRuntime.pas

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10500,21 +10500,14 @@ function ClassCallProcMethod(Caller: TPSExec; p: TPSExternalProcRec; Global, Sta
1050010500
CurrStack := Cardinal(Stack.Count) - Cardinal(length(s)) -1;
1050110501
if s[1] = #0 then inc(CurrStack);
1050210502
MyList := TPSList.Create;
10503-
{$IFDEF CPUX64}
10504-
if p.Ext2 = nil then begin
10505-
MyList.Add(NewPPSVariantIFC(n, False));
10506-
FSelf := nil;
10507-
end;
10508-
{$ENDIF}
10509-
dx := MyList.Count;
1051010503
for i := 2 to length(s) do
1051110504
begin
1051210505
MyList.Add(nil);
1051310506
end;
1051410507
for i := length(s) downto 2 do
1051510508
begin
1051610509
n := Stack[CurrStack];
10517-
MyList[i - 2 + dx] := NewPPSVariantIFC(n, s[i] <> #0);
10510+
MyList[i - 2] := NewPPSVariantIFC(n, s[i] <> #0);
1051810511
inc(CurrStack);
1051910512
end;
1052010513
if s[1] <> #0 then

0 commit comments

Comments
 (0)