mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
Duplicate files should not fail if unable to get Destination
Directory.
This commit is contained in:
parent
be2092266e
commit
1e6c09a3f3
@ -633,9 +633,14 @@ static UINT ITERATE_DuplicateFiles(MSIRECORD *row, LPVOID param)
|
||||
dest_path = resolve_folder(package, destkey, FALSE,FALSE,NULL);
|
||||
if (!dest_path)
|
||||
{
|
||||
ERR("Unable to get destination folder\n");
|
||||
HeapFree(GetProcessHeap(),0,file_source);
|
||||
return ERROR_FUNCTION_FAILED;
|
||||
/* try a Property */
|
||||
dest_path = load_dynamic_property(package, destkey, NULL);
|
||||
if (!dest_path)
|
||||
{
|
||||
FIXME("Unable to get destination folder, try AppSearch properties\n");
|
||||
HeapFree(GetProcessHeap(),0,file_source);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user