Loading lib/multi.c +1 −1 Original line number Diff line number Diff line Loading @@ -512,7 +512,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle, } if(easy) { bool premature = easy->state != CURLM_STATE_COMPLETED; bool premature = (bool)(easy->state != CURLM_STATE_COMPLETED); /* If the 'state' is not INIT or COMPLETED, we might need to do something nice to put the easy_handle in a good known state when this returns. */ Loading lib/sendf.c +1 −1 Original line number Diff line number Diff line Loading @@ -474,7 +474,7 @@ int Curl_read(struct connectdata *conn, /* connection data */ ssize_t nread; size_t bytesfromsocket = 0; char *buffertofill = NULL; bool pipelining = (conn->data->multi && bool pipelining = (bool)(conn->data->multi && Curl_multi_canPipeline(conn->data->multi)); /* Set 'num' to 0 or 1, depending on which socket that has been sent here. Loading Loading
lib/multi.c +1 −1 Original line number Diff line number Diff line Loading @@ -512,7 +512,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle, } if(easy) { bool premature = easy->state != CURLM_STATE_COMPLETED; bool premature = (bool)(easy->state != CURLM_STATE_COMPLETED); /* If the 'state' is not INIT or COMPLETED, we might need to do something nice to put the easy_handle in a good known state when this returns. */ Loading
lib/sendf.c +1 −1 Original line number Diff line number Diff line Loading @@ -474,7 +474,7 @@ int Curl_read(struct connectdata *conn, /* connection data */ ssize_t nread; size_t bytesfromsocket = 0; char *buffertofill = NULL; bool pipelining = (conn->data->multi && bool pipelining = (bool)(conn->data->multi && Curl_multi_canPipeline(conn->data->multi)); /* Set 'num' to 0 or 1, depending on which socket that has been sent here. Loading