From: Joe Watkins Date: Thu, 31 Mar 2016 11:51:00 +0000 (+0100) Subject: remove unused params || woops X-Git-Tag: php-7.0.6RC1~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d9e4510224f022c5e720582d27aa0388569874bc;p=php remove unused params || woops --- diff --git a/main/network.c b/main/network.c index 6d1d97bc82..e7f1b84281 100644 --- a/main/network.c +++ b/main/network.c @@ -176,8 +176,6 @@ PHPAPI int php_network_getaddresses(const char *host, int socktype, struct socka # endif struct addrinfo hints, *res, *sai; #else - char *tmp_host_buf = NULL; - struct hostent tmp_host_info; struct hostent *host_info; struct in_addr in; #endif @@ -251,7 +249,7 @@ PHPAPI int php_network_getaddresses(const char *host, int socktype, struct socka host_info = NULL; errno = E2BIG; } else { - host_info = php_network_gethostbyname(host, &tmp_host_info, &tmp_host_buf); + host_info = php_network_gethostbyname(host); } if (host_info == NULL) { if (error_string) { @@ -272,9 +270,6 @@ PHPAPI int php_network_getaddresses(const char *host, int socktype, struct socka ((struct sockaddr_in *)*sap)->sin_addr = in; sap++; n = 1; - if (tmp_host_buf) { - efree(tmp_host_buf); - } #endif *sap = NULL;