* skip empty path components in concatpaths, related to #40682

(cherry picked from commit 2ec99cc82e)
This commit is contained in:
marcoonthegit 2024-04-03 14:40:32 +02:00
parent 15f377a60c
commit 9d39bcbdec

View File

@ -510,12 +510,14 @@ function ConcatPaths(const Paths: array of PathStr): PathStr;
var
I: Integer;
begin
Result := '';
if Length(Paths) > 0 then
begin
Result := Paths[0];
if Paths[0]<>'' then
Result := Paths[0];
for I := 1 to Length(Paths) - 1 do
Result := IncludeTrailingPathDelimiter(Result) + ExcludeLeadingPathDelimiter(Paths[I]);
end else
Result := '';
if Paths[i]<>'' then
Result := IncludeTrailingPathDelimiter(Result) + ExcludeLeadingPathDelimiter(Paths[I]);
end
end;