From 3a3246527ae07868632e7f4c40b6a1d900532738 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Thu, 1 May 2008 15:27:16 +0200 Subject: [PATCH] urlmon/tests: Fix timeout for tests on win9x. --- dlls/urlmon/tests/url.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/urlmon/tests/url.c b/dlls/urlmon/tests/url.c index 5c8505c88e5..592eefac019 100644 --- a/dlls/urlmon/tests/url.c +++ b/dlls/urlmon/tests/url.c @@ -449,6 +449,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl, LPWSTR additional_headers = (LPWSTR)0xdeadbeef; BYTE sec_id[100]; DWORD fetched = 256, size = 100; + DWORD tid; static const WCHAR wszMimes[] = {'*','/','*',0}; @@ -518,7 +519,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl, IInternetProtocolSink_AddRef(pOIProtSink); protocol_sink = pOIProtSink; - CreateThread(NULL, 0, thread_proc, NULL, 0, NULL); + CreateThread(NULL, 0, thread_proc, NULL, 0, &tid); return S_OK; } -- 2.11.4.GIT