Fix broken httpfetch due to SimpleThread removal

This commit is contained in:
sapier 2013-12-16 23:31:56 +01:00
parent c9ac9992c7
commit 54dbd78f90
1 changed files with 3 additions and 0 deletions

View File

@ -539,6 +539,7 @@ protected:
void * Thread()
{
ThreadStarted();
log_register_thread("CurlFetchThread");
DSTACK(__FUNCTION_NAME);
@ -651,6 +652,8 @@ void httpfetch_cleanup()
void httpfetch_async(const HTTPFetchRequest &fetchrequest)
{
g_httpfetch_thread->requestFetch(fetchrequest);
if (!g_httpfetch_thread->IsRunning())
g_httpfetch_thread->Start();
}
static void httpfetch_request_clear(unsigned long caller)