Vincent Povirk : msi: Use MsgWaitForMultipleObjectsEx to do waits.

Alexandre Julliard julliard at winehq.org
Thu Oct 13 14:10:11 CDT 2011


Module: wine
Branch: master
Commit: 2556173f20ba9583044aaf31b16cbb2214d2b907
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2556173f20ba9583044aaf31b16cbb2214d2b907

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Thu Oct 13 13:32:42 2011 -0500

msi: Use MsgWaitForMultipleObjectsEx to do waits.

---

 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 7074a7b..8b10215 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 )
-            WaitForSingleObject( handle, INFINITE );
+            MsgWaitForMultipleObjectsEx( 1, &handle, INFINITE, 0, 0 );
         return;
     }
 




More information about the wine-cvs mailing list