fix patchPlateformPath

This commit is contained in:
Basile Burg 2014-07-12 07:21:58 +02:00
parent f908e60e26
commit be13cda15b
1 changed files with 7 additions and 1 deletions

View File

@ -193,8 +193,13 @@ function patchPlateformPath(const aPath: string): string;
function patchProc(const src: string; const invalid: char): string;
var
i: Integer;
dir: string;
begin
result := src;
dir := ExtractFileDrive(src);
if length(dir) > 0 then
result := src[length(dir)+1..length(src)]
else
result := src;
i := pos(invalid, result);
if i <> 0 then
begin
@ -204,6 +209,7 @@ begin
until
i = 0;
end;
result := dir + result;
end;
begin
result := aPath;