Skip to content
Snippets Groups Projects
Commit e54209d6 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed an uninitialized variable in multi_runsingle() that could cause a

request to prematurely end.
parent f6a958dc
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,10 @@
Changelog
Daniel Fandrich (7 Aug 2008)
- Fixed an uninitialized variable in multi_runsingle() that could cause a
request to prematurely end.
Yang Tse (7 Aug 2008)
- Added curlbuild.h and curlrules.h header files to libcurl's public headers.
File curlbuild.h is a generated file on configure-capable systems. This is
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment