From c2abd8307976f60679a3bc7353347d658414401f Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Wed, 9 Feb 2005 14:05:24 +0000 Subject: [PATCH] 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. --- dlls/msi/custom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c index a1ce345577d..7a7f1aa7636 100644 --- a/dlls/msi/custom.c +++ b/dlls/msi/custom.c @@ -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, -- 2.11.4.GIT