mirror of
https://github.com/curl/curl.git
synced 2026-04-30 17:47:50 +03:00
parent
54d3769761
commit
0a35580e21
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue