Commit b1a16d97 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Only wait for custom actions that don't have msidbCustomActionTypeContinue specified.

parent 2a95a8ae
......@@ -398,7 +398,7 @@ static UINT process_handle(MSIPACKAGE* package, UINT type,
{
TRACE("Asynchronous Execution of action %s\n",debugstr_w(Name));
/* asynchronous */
if (type & msidbCustomActionTypeContinue)
if (!(type & msidbCustomActionTypeContinue))
{
if (ProcessHandle)
{
......@@ -406,7 +406,7 @@ static UINT process_handle(MSIPACKAGE* package, UINT type,
CloseHandle(ThreadHandle);
}
else
file_running_action(package, ThreadHandle, FALSE, Name);
file_running_action(package, ThreadHandle, FALSE, 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