Module: wine Branch: master Commit: 2556173f20ba9583044aaf31b16cbb2214d2b907 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2556173f20ba9583044aaf31b1...
Author: Vincent Povirk vincent@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; }