]> granicus.if.org Git - php/commitdiff
remove unused params || woops
authorJoe Watkins <krakjoe@php.net>
Thu, 31 Mar 2016 11:51:00 +0000 (12:51 +0100)
committerJoe Watkins <krakjoe@php.net>
Thu, 31 Mar 2016 11:51:00 +0000 (12:51 +0100)
main/network.c

index 6d1d97bc82dd86cbdd0694828c3c959cafa5cd85..e7f1b84281fbab6844d87d8376eabaf0eb387883 100644 (file)
@@ -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;