X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/ac0c8510e21bcbe0ea018e8a45d9dfa9aafb18f5..95587c73731bf686583ca49d6cc9f3157aa5e527:/windows/winnet.c diff --git a/windows/winnet.c b/windows/winnet.c index 715c492f..47ac8b25 100644 --- a/windows/winnet.c +++ b/windows/winnet.c @@ -356,6 +356,7 @@ SockAddr sk_namelookup(const char *host, char **canonicalname, #ifndef NO_IPV6 ret->ai = ret->ais = NULL; #endif + ret->addresses = NULL; ret_family = AF_UNSPEC; *realhost = '\0'; @@ -456,6 +457,7 @@ SockAddr sk_nonamelookup(const char *host) #ifndef NO_IPV6 ret->ai = ret->ais = NULL; #endif + ret->addresses = NULL; ret->naddresses = 0; strncpy(ret->hostname, host, lenof(ret->hostname)); ret->hostname[lenof(ret->hostname)-1] = '\0';