mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 00:55:04 -05:00
parent
54d3769761
commit
0a35580e21
@ -168,9 +168,11 @@ static void mstate(struct Curl_easy *data, CURLMstate state
|
||||
}
|
||||
#endif
|
||||
|
||||
if(state == CURLM_STATE_COMPLETED)
|
||||
if(state == CURLM_STATE_COMPLETED) {
|
||||
/* changing to COMPLETED means there's one less easy handle 'alive' */
|
||||
DEBUGASSERT(data->multi->num_alive > 0);
|
||||
data->multi->num_alive--;
|
||||
}
|
||||
|
||||
/* if this state has an init-function, run it */
|
||||
if(finit[state])
|
||||
|
Loading…
Reference in New Issue
Block a user