Clean up cached fetch handles.

This commit is contained in:
Michael Drake 2013-10-24 18:12:18 +01:00
parent 0e4a605729
commit 0d03a342d9
1 changed files with 2 additions and 0 deletions

View File

@ -319,6 +319,8 @@ void fetch_curl_finalise(lwc_string *scheme)
h = curl_handle_ring;
RING_REMOVE(curl_handle_ring, h);
lwc_string_unref(h->host);
curl_easy_cleanup(h->handle);
free(h);
}
}