The 'char *ip' variable was being allocated and zeroed but not being used or freed.

This commit is contained in:
Robert Di Paolo 2015-03-18 10:04:08 +00:00
parent c8e8f94ffe
commit 7cf28a5623

View File

@ -612,8 +612,6 @@ static int ns_resolve2(const char *host, struct in_addr *ina) {
int rv = 0;
struct addrinfo hints, *servinfo, *p;
struct sockaddr_in *h = NULL;
char *ip = NS_MALLOC(17);
memset(ip, '\0', 17);
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_INET;