1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

WIN32 fix, _beginthreadex() may return either 0 or -1L upon failure

This commit is contained in:
Yang Tse 2010-01-29 17:47:54 +00:00
parent 4ee4e66c4f
commit 6ebd71d186

View File

@ -101,7 +101,11 @@ curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void*), void
#ifdef _WIN32_WCE
return CreateThread(NULL, 0, func, arg, 0, NULL);
#else
return (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);
curl_thread_t t;
t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);
if((t == 0) || (t == (curl_thread_t)-1L))
return curl_thread_t_null;
return t;
#endif
}