Commit 29e5f1d9 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

appwiz.cpl: Copy addons to cache instead of moving.

This leaves behind entries in wininet's own cache. That these are created in the first place is probably less than desirable, but that seems best addressed after code freeze. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46364Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 9c19b2e2
......@@ -513,7 +513,7 @@ static HRESULT WINAPI InstallCallback_OnStopBinding(IBindStatusCallback *iface,
cache_file_name = get_cache_file_name(TRUE);
if(cache_file_name) {
MoveFileW(msi_file, cache_file_name);
CopyFileW(msi_file, cache_file_name, FALSE);
heap_free(cache_file_name);
}
}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