aboutsummaryrefslogtreecommitdiff
path: root/lib/connect.c
diff options
context:
space:
mode:
authorMarcel Raad <marcelraad@users.sf.net>2014-07-04 18:26:57 +0200
committerDaniel Stenberg <daniel@haxx.se>2014-07-05 01:42:10 +0200
commit8ffe6f5b5761aa77b3e5eae236475b173e9efd2f (patch)
tree902996c948cfd374473c6eb82494f350e012dfb7 /lib/connect.c
parentca2aa61b66d684a1076d43025048f1a43d5755b6 (diff)
compiler warnings: potentially uninitialized variables
... pointed out by MSVC2013 Bug: http://curl.haxx.se/bug/view.cgi?id=1391
Diffstat (limited to 'lib/connect.c')
-rw-r--r--lib/connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connect.c b/lib/connect.c
index de78c33e2..826ec251d 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -551,7 +551,7 @@ static CURLcode trynextip(struct connectdata *conn,
if(sockindex == FIRSTSOCKET) {
Curl_addrinfo *ai = NULL;
- int family;
+ int family = AF_UNSPEC;
if(conn->tempaddr[tempindex]) {
/* find next address in the same protocol family */