mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
* skip empty path components in concatpaths, related to #40682
This commit is contained in:
parent
654a8e564b
commit
2ec99cc82e
@ -519,12 +519,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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user