mirror of
https://github.com/curl/curl.git
synced 2026-08-24 15:23:36 +03:00
Fixed an uninitialized variable in multi_runsingle() that could cause a
request to prematurely end.
This commit is contained in:
parent
f6a958dc3a
commit
e54209d643
2 changed files with 5 additions and 1 deletions
|
|
@ -871,7 +871,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||
bool async;
|
||||
bool protocol_connect = FALSE;
|
||||
bool dophase_done;
|
||||
bool done;
|
||||
bool done = FALSE;
|
||||
CURLMcode result = CURLM_OK;
|
||||
struct SingleRequest *k;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue