From 1d173f3413235de45828301ad554314fc8384ddf Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Fri, 7 Sep 2018 16:15:24 +0200 Subject: docs/examples: do not wait when no transfers are running Closes #2948 --- docs/examples/multi-app.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/examples/multi-app.c') diff --git a/docs/examples/multi-app.c b/docs/examples/multi-app.c index 74b2a9426..fc31f5e68 100644 --- a/docs/examples/multi-app.c +++ b/docs/examples/multi-app.c @@ -48,7 +48,7 @@ int main(void) CURL *handles[HANDLECOUNT]; CURLM *multi_handle; - int still_running; /* keep number of running handles */ + int still_running = 0; /* keep number of running handles */ int i; CURLMsg *msg; /* for picking up messages with the transfer status */ @@ -74,7 +74,7 @@ int main(void) /* we start some action by calling perform right away */ curl_multi_perform(multi_handle, &still_running); - do { + while(still_running) { struct timeval timeout; int rc; /* select() return code */ CURLMcode mc; /* curl_multi_fdset() return code */ @@ -142,7 +142,7 @@ int main(void) curl_multi_perform(multi_handle, &still_running); break; } - } while(still_running); + } /* See how the transfers went */ while((msg = curl_multi_info_read(multi_handle, &msgs_left))) { -- cgit v1.2.3