From 991bae1409166663255569943571097c1ac39381 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Sat, 29 Oct 2005 11:40:03 +0000 Subject: [PATCH] Don't change the UI level during ExecuteAction. --- dlls/msi/action.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 71df02722a0..e2803d9c291 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -3803,17 +3803,10 @@ 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 = msi_dup_property( package, szUILevel ); - MSI_SetPropertyW(package,szUILevel,szTwo); package->script->InWhatSequence |= SEQUENCE_EXEC; rc = ACTION_ProcessExecSequence(package,FALSE); - MSI_SetPropertyW(package,szUILevel,level); - msi_free(level); return rc; }