mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Break file name
This commit is contained in:
parent
7829438512
commit
390bb3bf61
1 changed files with 2 additions and 0 deletions
|
|
@ -3184,6 +3184,7 @@ begin
|
|||
aFile:= ActiveFrame.ActiveFile;
|
||||
if Assigned(aFile) then
|
||||
try
|
||||
aFile:= aFile.Clone;
|
||||
sCmd:= 'quote' + #32 + sCmd;
|
||||
aFile.FullPath:= ActiveFrame.CurrentPath;
|
||||
Operation:= ActiveFrame.FileSource.CreateExecuteOperation(
|
||||
|
|
@ -3193,6 +3194,7 @@ begin
|
|||
if Assigned(Operation) then
|
||||
Operation.Execute;
|
||||
finally
|
||||
FreeThenNil(aFile);
|
||||
FreeThenNil(Operation);
|
||||
end;
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue