mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
multi: call the progress callback in all states
As long as no error is reported, the progress function can get called. This may be a little TOO often so we should keep an eye on this and possibly make this conditional somehow.
This commit is contained in:
parent
7a99672042
commit
51a757c11b
@ -1528,6 +1528,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
||||
|
||||
multistate(easy, CURLM_STATE_COMPLETED);
|
||||
}
|
||||
else
|
||||
Curl_pgrsUpdate(easy->easy_conn);
|
||||
}
|
||||
} while(0);
|
||||
if((CURLM_STATE_COMPLETED == easy->state) && !easy->msg) {
|
||||
|
Loading…
Reference in New Issue
Block a user