* Fix compiler warning

This commit is contained in:
Michaël Van Canneyt 2023-02-04 13:09:33 +01:00
parent eaf665e8c4
commit 15b49f4609

View File

@ -108,6 +108,7 @@ Var
L : Integer;
begin
Result:='';
L:=Length(B);
SetLength(Result,L);
If L>0 then
@ -120,6 +121,7 @@ Var
L : Integer;
begin
Result:=[];
L:=Length(S);
SetLength(Result,L);
If L>0 then