ole32: Wait forever on the ready_event in the local server tests.

This commit is contained in:
Rob Shearman 2007-11-12 20:15:29 +00:00 committed by Alexandre Julliard
parent 24723913e0
commit 56a624b0fe
1 changed files with 1 additions and 1 deletions

View File

@ -2555,7 +2555,7 @@ static void test_local_server(void)
ok(process != NULL, "couldn't start local server process, error was %d\n", GetLastError());
ready_event = CreateEvent(NULL, FALSE, FALSE, "Wine COM Test Ready Event");
WaitForSingleObject(ready_event, 1000);
WaitForSingleObject(ready_event, INFINITE);
CloseHandle(ready_event);
hr = CoCreateInstance(&CLSID_WineOOPTest, NULL, CLSCTX_LOCAL_SERVER, &IID_IClassFactory, (void **)&cf);