mirror of https://gitlab.com/basile.b/dexed.git
fixed possible list error when getting the outputFilename
This commit is contained in:
parent
4e9259371c
commit
1791623aee
|
@ -300,6 +300,8 @@ begin
|
|||
result := getAbsoluteFilename(result);
|
||||
exit;
|
||||
end;
|
||||
if Sources.Count = 0 then
|
||||
exit;
|
||||
result := extractFilename(Sources.Strings[0]);
|
||||
result := result[1..length(result) - length(extractFileExt(result))];
|
||||
result := extractFilePath(fileName) + DirectorySeparator + result + exeExt;
|
||||
|
|
Loading…
Reference in New Issue