mirror of
https://github.com/curl/curl.git
synced 2026-08-25 21:53:32 +03:00
Uninitialized variable set.
This commit is contained in:
parent
011929cf4d
commit
648c5b05c0
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue