diff options
-rw-r--r-- | lib/hostthre.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/hostthre.c b/lib/hostthre.c index a21105695..f55abb690 100644 --- a/lib/hostthre.c +++ b/lib/hostthre.c @@ -542,10 +542,12 @@ static bool init_resolve_thread (struct connectdata *conn, #endif if (!td->thread_hnd) { -#ifndef _WIN32_WCE +#ifdef _WIN32_WCE + TRACE(("CreateThread() failed; %s\n", Curl_strerror(conn,GetLastError()))); +#else SetLastError(errno); -#endif TRACE(("_beginthreadex() failed; %s\n", Curl_strerror(conn,errno))); +#endif Curl_destroy_thread_data(&conn->async); return FALSE; } |