mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:29:29 +02:00
comobj: for loop to ArgCount - 1 causes a crash when ArgCount = 0 because it is unsigned
git-svn-id: trunk@14743 -
This commit is contained in:
parent
75e702c2e8
commit
9f7a69627a
@ -1346,59 +1346,60 @@ HKCR
|
||||
GetMem(Arguments,desc^.calldesc.argcount*sizeof(TVarData));
|
||||
|
||||
{ prepare parameters }
|
||||
for i:=0 to desc^.CallDesc.ArgCount-1 do
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DoDispCallByID: Params = ',hexstr(PtrInt(Params),SizeOf(Pointer)*2));
|
||||
{$endif DEBUG_DISPATCH}
|
||||
{ get plain type }
|
||||
CurrType:=desc^.CallDesc.ArgTypes[i] and $3f;
|
||||
{ by reference? }
|
||||
if (desc^.CallDesc.ArgTypes[i] and $80)<>0 then
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
write('DispatchInvoke: Got ref argument with type = ',CurrType);
|
||||
writeln;
|
||||
{$endif DEBUG_DISPATCH}
|
||||
Arguments[i].VType:=CurrType or VarByRef;
|
||||
Arguments[i].VPointer:=PPointer(Params)^;
|
||||
inc(PPointer(Params));
|
||||
end
|
||||
else
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DispatchInvoke: Got ref argument with type = ',CurrType);
|
||||
{$endif DEBUG_DISPATCH}
|
||||
case CurrType of
|
||||
varVariant:
|
||||
if desc^.CallDesc.ArgCount > 0 then
|
||||
for i:=0 to desc^.CallDesc.ArgCount-1 do
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DoDispCallByID: Params = ',hexstr(PtrInt(Params),SizeOf(Pointer)*2));
|
||||
{$endif DEBUG_DISPATCH}
|
||||
{ get plain type }
|
||||
CurrType:=desc^.CallDesc.ArgTypes[i] and $3f;
|
||||
{ by reference? }
|
||||
if (desc^.CallDesc.ArgTypes[i] and $80)<>0 then
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
write('DispatchInvoke: Got ref argument with type = ',CurrType);
|
||||
writeln;
|
||||
{$endif DEBUG_DISPATCH}
|
||||
Arguments[i].VType:=CurrType or VarByRef;
|
||||
Arguments[i].VPointer:=PPointer(Params)^;
|
||||
inc(PPointer(Params));
|
||||
end
|
||||
else
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DispatchInvoke: Got ref argument with type = ',CurrType);
|
||||
{$endif DEBUG_DISPATCH}
|
||||
case CurrType of
|
||||
varVariant:
|
||||
begin
|
||||
Arguments[i].VType:=CurrType;
|
||||
move(PVarData(Params)^,Arguments[i],sizeof(TVarData));
|
||||
inc(PVarData(Params));
|
||||
end;
|
||||
varCurrency,
|
||||
varDouble,
|
||||
VarDate:
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DispatchInvoke: Got 8 byte float argument');
|
||||
{$endif DEBUG_DISPATCH}
|
||||
Arguments[i].VType:=CurrType;
|
||||
move(PPointer(Params)^,Arguments[i].VDouble,sizeof(Double));
|
||||
inc(PDouble(Params));
|
||||
end;
|
||||
else
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DispatchInvoke: Got argument with type ',CurrType);
|
||||
{$endif DEBUG_DISPATCH}
|
||||
Arguments[i].VType:=CurrType;
|
||||
move(PVarData(Params)^,Arguments[i],sizeof(TVarData));
|
||||
inc(PVarData(Params));
|
||||
Arguments[i].VPointer:=PPointer(Params)^;
|
||||
inc(PPointer(Params));
|
||||
end;
|
||||
varCurrency,
|
||||
varDouble,
|
||||
VarDate:
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DispatchInvoke: Got 8 byte float argument');
|
||||
{$endif DEBUG_DISPATCH}
|
||||
Arguments[i].VType:=CurrType;
|
||||
move(PPointer(Params)^,Arguments[i].VDouble,sizeof(Double));
|
||||
inc(PDouble(Params));
|
||||
end;
|
||||
else
|
||||
begin
|
||||
{$ifdef DEBUG_DISPATCH}
|
||||
writeln('DispatchInvoke: Got argument with type ',CurrType);
|
||||
{$endif DEBUG_DISPATCH}
|
||||
Arguments[i].VType:=CurrType;
|
||||
Arguments[i].VPointer:=PPointer(Params)^;
|
||||
inc(PPointer(Params));
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
dispparams.cArgs:=desc^.calldesc.argcount;
|
||||
dispparams.rgvarg:=pointer(Arguments);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user