Module: wine Branch: master Commit: e4e7e956bd93f0ffd597a041a58c82c02c811ac0 URL: https://source.winehq.org/git/wine.git/?a=commit;h=e4e7e956bd93f0ffd597a041a...
Author: Zebediah Figura z.figura12@gmail.com Date: Sun Jun 30 17:14:18 2019 -0500
msi: Close all handles opened by a custom action thread.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47418 Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msi/custom.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c index 03f9b08..b864270 100644 --- a/dlls/msi/custom.c +++ b/dlls/msi/custom.c @@ -580,7 +580,8 @@ UINT CDECL __wine_msi_call_dll_function(DWORD client_pid, const GUID *guid)
midl_user_free(dll); midl_user_free(proc); - MsiCloseHandle(hPackage); + + MsiCloseAllHandles();
return r; }