diff options
author | Marcel Raad <marcelraad@users.sf.net> | 2014-07-04 18:26:57 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-05 01:42:10 +0200 |
commit | 8ffe6f5b5761aa77b3e5eae236475b173e9efd2f (patch) | |
tree | 902996c948cfd374473c6eb82494f350e012dfb7 /lib/url.c | |
parent | ca2aa61b66d684a1076d43025048f1a43d5755b6 (diff) | |
download | curl-8ffe6f5b5761aa77b3e5eae236475b173e9efd2f.tar.gz |
compiler warnings: potentially uninitialized variables
... pointed out by MSVC2013
Bug: http://curl.haxx.se/bug/view.cgi?id=1391
Diffstat (limited to 'lib/url.c')
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 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); |