Commit c2abd830 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Do not track the temp files for custom actions based on the name from

the table because then we get conflicts and files not tracked or cleaned up.
parent 09881795
......@@ -256,7 +256,7 @@ static UINT store_binary_to_temp(MSIPACKAGE *package, LPCWSTR source,
HANDLE the_file;
CHAR buffer[1024];
if (track_tempfile(package, source, tmp_file)!=0)
if (track_tempfile(package, tmp_file, tmp_file)!=0)
FIXME("File Name in temp tracking collision\n");
the_file = CreateFileW(tmp_file, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
......
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