summaryrefslogtreecommitdiff
path: root/main/network.c
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2016-03-31 12:51:00 +0100
committerJoe Watkins <krakjoe@php.net>2016-03-31 12:51:00 +0100
commitd9e4510224f022c5e720582d27aa0388569874bc (patch)
tree42acc12a2d3b116114cb44a2c5f4243183635a83 /main/network.c
parent3b13206aa9d494af2cf4bde4047250405d5bbfd2 (diff)
downloadphp-git-d9e4510224f022c5e720582d27aa0388569874bc.tar.gz
remove unused params || woops
Diffstat (limited to 'main/network.c')
-rw-r--r--main/network.c7
1 files changed, 1 insertions, 6 deletions
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;