1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

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

request to prematurely end.
This commit is contained in:
Dan Fandrich 2008-08-08 01:52:08 +00:00
parent f6a958dc3a
commit e54209d643
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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;