[1/2] Revert "msi: Use MsgWaitForMultipleObjectsEx to do waits."

Hans Leidekker hans at codeweavers.com
Wed Nov 9 08:05:59 CST 2011


This reverts commit 2556173f20ba9583044aaf31b16cbb2214d2b907.
It causes a regression in the Quicken 2011 installer.
---
 dlls/msi/dialog.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c
index 8b10215..7074a7b 100644
--- a/dlls/msi/dialog.c
+++ b/dlls/msi/dialog.c
@@ -3787,7 +3787,7 @@ void msi_dialog_check_messages( HANDLE handle )
     if( uiThreadId != GetCurrentThreadId() )
     {
         if( handle )
-            MsgWaitForMultipleObjectsEx( 1, &handle, INFINITE, 0, 0 );
+            WaitForSingleObject( handle, INFINITE );
         return;
     }
 
-- 
1.7.5.4







More information about the wine-patches mailing list