mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
Avoid range check error in TObjData.writebytes overloads using dynamic arrays
This commit is contained in:
parent
754c40cdb0
commit
a74a4aca03
@ -1728,11 +1728,13 @@ implementation
|
||||
|
||||
procedure TObjData.writebytes(const Data: TByteDynArray; len: TObjSectionOfs);
|
||||
begin
|
||||
if len>0 then
|
||||
WriteBytes(Data[0],len);
|
||||
end;
|
||||
|
||||
procedure TObjData.writebytes(const Data: TAnsiCharDynArray; len: TObjSectionOfs);
|
||||
begin
|
||||
if len>0 then
|
||||
WriteBytes(Data[0],len);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user