Loading docs/examples/multi-app.c +2 −2 Original line number Original line Diff line number Diff line Loading @@ -98,8 +98,6 @@ int main(int argc, char **argv) } } } } curl_multi_cleanup(multi_handle); /* See how the transfers went */ /* See how the transfers went */ while ((msg = curl_multi_info_read(multi_handle, &msgs_left))) { while ((msg = curl_multi_info_read(multi_handle, &msgs_left))) { if (msg->msg == CURLMSG_DONE) { if (msg->msg == CURLMSG_DONE) { Loading @@ -120,6 +118,8 @@ int main(int argc, char **argv) } } } } curl_multi_cleanup(multi_handle); /* Free the CURL handles */ /* Free the CURL handles */ for (i=0; i<HANDLECOUNT; i++) for (i=0; i<HANDLECOUNT; i++) curl_easy_cleanup(handles[i]); curl_easy_cleanup(handles[i]); Loading Loading
docs/examples/multi-app.c +2 −2 Original line number Original line Diff line number Diff line Loading @@ -98,8 +98,6 @@ int main(int argc, char **argv) } } } } curl_multi_cleanup(multi_handle); /* See how the transfers went */ /* See how the transfers went */ while ((msg = curl_multi_info_read(multi_handle, &msgs_left))) { while ((msg = curl_multi_info_read(multi_handle, &msgs_left))) { if (msg->msg == CURLMSG_DONE) { if (msg->msg == CURLMSG_DONE) { Loading @@ -120,6 +118,8 @@ int main(int argc, char **argv) } } } } curl_multi_cleanup(multi_handle); /* Free the CURL handles */ /* Free the CURL handles */ for (i=0; i<HANDLECOUNT; i++) for (i=0; i<HANDLECOUNT; i++) curl_easy_cleanup(handles[i]); curl_easy_cleanup(handles[i]); Loading