Commit ced64861 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: dest_path refers to the directory prefix, not the entire file path.

parent 055b5e44
...@@ -901,13 +901,11 @@ static UINT ITERATE_DuplicateFiles(MSIRECORD *row, LPVOID param) ...@@ -901,13 +901,11 @@ static UINT ITERATE_DuplicateFiles(MSIRECORD *row, LPVOID param)
} }
dest = build_directory_name(2, dest_path, dest_name); dest = build_directory_name(2, dest_path, dest_name);
create_full_pathW(dest); create_full_pathW(dest_path);
TRACE("Duplicating file %s to %s\n",debugstr_w(file->TargetPath), TRACE("Duplicating file %s to %s\n",debugstr_w(file->TargetPath),
debugstr_w(dest)); debugstr_w(dest));
CreateDirectoryW(dest_path, NULL);
if (strcmpW(file->TargetPath,dest)) if (strcmpW(file->TargetPath,dest))
rc = !CopyFileW(file->TargetPath,dest,TRUE); rc = !CopyFileW(file->TargetPath,dest,TRUE);
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment