Paul Vriens : urlmon/tests: Fix timeouts for win9x tests.
Module: wine Branch: master Commit: bdde87f04a8747c08474938bcef006d55a5c7081 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bdde87f04a8747c08474938bce... Author: Paul Vriens <paul.vriens.wine(a)gmail.com> Date: Mon Sep 8 08:10:16 2008 +0200 urlmon/tests: Fix timeouts for win9x tests. --- dlls/urlmon/tests/protocol.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c index 638a0d7..d503721 100644 --- a/dlls/urlmon/tests/protocol.c +++ b/dlls/urlmon/tests/protocol.c @@ -871,6 +871,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl, LPWSTR additional_headers = NULL; BYTE sec_id[100]; DWORD fetched = 0, size = 100; + DWORD tid; SET_EXPECT(GetBindString_USER_AGENT); hres = IInternetBindInfo_GetBindString(pOIBindInfo, BINDSTRING_USER_AGENT, @@ -927,7 +928,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl, IServiceProvider_Release(service_provider); - CreateThread(NULL, 0, thread_proc, NULL, 0, NULL); + CreateThread(NULL, 0, thread_proc, NULL, 0, &tid); return S_OK; }
participants (1)
-
Alexandre Julliard