mirror of
https://github.com/curl/curl.git
synced 2026-08-25 06:03:32 +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
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue