diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-11-27 06:31:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-11-27 06:31:04 +0000 |
commit | be4607eba89e85e3fd825e97e203f02cc3f31688 (patch) | |
tree | 3a02f22c0e7e8d9dfd094cbb28dbe8a5f4990ae5 /sysdeps/posix | |
parent | ca4dc0fe64c2087b78c52ff9b93ecca669d56164 (diff) | |
download | glibc-be4607eba89e85e3fd825e97e203f02cc3f31688.tar.gz glibc-be4607eba89e85e3fd825e97e203f02cc3f31688.tar.xz glibc-be4607eba89e85e3fd825e97e203f02cc3f31688.zip |
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
to IPv4 or IPv6 if an interface has been found.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index b52c371c81..72fbdb0f01 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -2108,13 +2108,8 @@ getaddrinfo (const char *name, const char *service, { /* If we haven't seen both IPv4 and IPv6 interfaces we can narrow down the search. */ - if (! seen_ipv4 || ! seen_ipv6) + if ((! seen_ipv4 || ! seen_ipv6) && (seen_ipv4 || seen_ipv6)) { - if (! seen_ipv4 && ! seen_ipv6) - /* Neither IPv4 nor IPv6 interfaces exist, nothing to - return. */ - goto err_noname; - local_hints = *hints; local_hints.ai_family = seen_ipv4 ? PF_INET : PF_INET6; hints = &local_hints; @@ -2124,7 +2119,6 @@ getaddrinfo (const char *name, const char *service, || (hints->ai_family == PF_INET6 && ! seen_ipv6)) { /* We cannot possibly return a valid answer. */ - err_noname: free (in6ai); return EAI_NONAME; } |