mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 05:08:04 +02:00
tai_aggregatetypedconst.add_to_string: fix off-by-one errors
This commit is contained in:
parent
91667644f4
commit
f0cecf5367
@ -740,7 +740,7 @@ implementation
|
|||||||
lent:=len1+len2;
|
lent:=len1+len2;
|
||||||
SetLength(strtai.str,lent+1);
|
SetLength(strtai.str,lent+1);
|
||||||
{ also copy null terminator }
|
{ also copy null terminator }
|
||||||
move(lother_string.str[0],strtai.str[len1+1],len2+1);
|
move(lother_string.str[0],strtai.str[len1],len2+1);
|
||||||
end;
|
end;
|
||||||
ait_const:
|
ait_const:
|
||||||
begin
|
begin
|
||||||
@ -749,8 +749,8 @@ implementation
|
|||||||
{ it was already len+1 to hold the #0 -> realloc to len+2 }
|
{ it was already len+1 to hold the #0 -> realloc to len+2 }
|
||||||
len1:=length(strtai.str);
|
len1:=length(strtai.str);
|
||||||
SetLength(strtai.str,len1+1);
|
SetLength(strtai.str,len1+1);
|
||||||
strtai.str[len1]:=ansichar(tai_const(othertai).value);
|
strtai.str[len1-1]:=ansichar(tai_const(othertai).value);
|
||||||
strtai.str[len1+1]:=#0;
|
strtai.str[len1]:=#0;
|
||||||
end;
|
end;
|
||||||
else
|
else
|
||||||
internalerror(2014070102);
|
internalerror(2014070102);
|
||||||
|
Loading…
Reference in New Issue
Block a user