1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Uninitialized variable set.

This commit is contained in:
Daniel Stenberg 2004-02-09 08:25:48 +00:00
parent 011929cf4d
commit 648c5b05c0

View File

@ -87,7 +87,7 @@ void *fire(void *ptr)
struct curl_slist *headers;
struct Tdata *tdata = (struct Tdata*)ptr;
CURL *curl = curl_easy_init();
int i;
int i=0;
headers = sethost(NULL);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);