Skip to content
Snippets Groups Projects
Commit af4bddf2 authored by Steve Holme's avatar Steve Holme
Browse files

easy.c: Fixed compilation warning

warning: `code' might be used uninitialized in this function
parent f19efd07
No related branches found
No related tags found
No related merge requests found
......@@ -718,7 +718,7 @@ static CURLcode easy_transfer(CURLM *multi)
{
bool done = FALSE;
CURLMcode mcode = CURLM_OK;
CURLcode code;
CURLcode code = CURLE_OK;
struct timeval before;
int without_fds = 0; /* count number of consecutive returns from
curl_multi_wait() without any filedescriptors */
......
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