Commit 25f1e75d authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Perform ExecuteAction at UILevel 2.

parent b9c6b857
......@@ -3841,8 +3841,16 @@ end:
static UINT ACTION_ExecuteAction(MSIPACKAGE *package)
{
static const WCHAR szUILevel[] = {'U','I','L','e','v','e','l',0};
static const WCHAR szTwo[] = {'2',0};
UINT rc;
LPWSTR level;
level = load_dynamic_property(package,szUILevel,NULL);
MSI_SetPropertyW(package,szUILevel,szTwo);
rc = ACTION_ProcessExecSequence(package,FALSE);
MSI_SetPropertyW(package,szUILevel,level);
HeapFree(GetProcessHeap(),0,level);
return rc;
}
......
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