mirror of
https://github.com/curl/curl.git
synced 2026-08-24 23:33:33 +03:00
compiler warnings: potentially uninitialized variables
... pointed out by MSVC2013 Bug: http://curl.haxx.se/bug/view.cgi?id=1391
This commit is contained in:
parent
ca2aa61b66
commit
8ffe6f5b57
3 changed files with 3 additions and 3 deletions
|
|
@ -5137,7 +5137,7 @@ static CURLcode create_conn(struct SessionHandle *data,
|
|||
char *proxy = NULL;
|
||||
bool prot_missing = FALSE;
|
||||
bool no_connections_available = FALSE;
|
||||
bool force_reuse;
|
||||
bool force_reuse = FALSE;
|
||||
size_t max_host_connections = Curl_multi_max_host_connections(data->multi);
|
||||
size_t max_total_connections = Curl_multi_max_total_connections(data->multi);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue