mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Ensure thread handle is closed too.
This commit is contained in:
parent
1dc0ce9562
commit
bb0aba34fa
@ -299,7 +299,7 @@ static unsigned __stdcall getaddrinfo_thread (void *arg)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Curl_destroy_thread_data() cleans up async resolver data.
|
* Curl_destroy_thread_data() cleans up async resolver data and thread handle.
|
||||||
* Complementary of ares_destroy.
|
* Complementary of ares_destroy.
|
||||||
*/
|
*/
|
||||||
void Curl_destroy_thread_data (struct Curl_async *async)
|
void Curl_destroy_thread_data (struct Curl_async *async)
|
||||||
@ -321,6 +321,9 @@ void Curl_destroy_thread_data (struct Curl_async *async)
|
|||||||
if (td->event_resolved)
|
if (td->event_resolved)
|
||||||
CloseHandle(td->event_resolved);
|
CloseHandle(td->event_resolved);
|
||||||
|
|
||||||
|
if (td->thread_hnd)
|
||||||
|
CloseHandle(td->thread_hnd);
|
||||||
|
|
||||||
free(async->os_specific);
|
free(async->os_specific);
|
||||||
}
|
}
|
||||||
async->hostname = NULL;
|
async->hostname = NULL;
|
||||||
@ -481,8 +484,6 @@ CURLcode Curl_wait_for_resolv(struct connectdata *conn,
|
|||||||
|
|
||||||
TRACE(("elapsed %lu ms\n", GetTickCount()-ticks));
|
TRACE(("elapsed %lu ms\n", GetTickCount()-ticks));
|
||||||
|
|
||||||
CloseHandle(td->thread_hnd);
|
|
||||||
|
|
||||||
if(entry)
|
if(entry)
|
||||||
*entry = conn->async.dns;
|
*entry = conn->async.dns;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user