Skip to content
Snippets Groups Projects
Commit cc5174a8 authored by Gisle Vanem's avatar Gisle Vanem
Browse files

Fix "'x' might be used uninitialized in this function" warnings.

parent 31552100
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@
int test(char *URL)
{
CURL *curl;
CURLcode res;
CURLcode res = CURLE_OK;
FILE *hd_src ;
int hd ;
struct_stat file_info;
......
......@@ -5,7 +5,7 @@ int test(char *URL)
CURL* curls;
CURLM* multi;
int still_running;
int i;
int i = -1;
CURLMsg *msg;
multi = curl_multi_init();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment