mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
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.
This commit is contained in:
parent
098817950d
commit
c2abd83079
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ static UINT store_binary_to_temp(MSIPACKAGE *package, LPCWSTR source,
|
||||||
HANDLE the_file;
|
HANDLE the_file;
|
||||||
CHAR buffer[1024];
|
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");
|
FIXME("File Name in temp tracking collision\n");
|
||||||
|
|
||||||
the_file = CreateFileW(tmp_file, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
|
the_file = CreateFileW(tmp_file, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
|
||||||
|
|
Loading…
Reference in a new issue