Paul Vriens : urlmon/tests: Fix timeouts for win9x tests.

Alexandre Julliard julliard at winehq.org
Mon Sep 8 07:41:45 CDT 2008


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

Author: Paul Vriens <paul.vriens.wine at 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;
     }




More information about the wine-cvs mailing list