summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-04-24 17:21:40 +0000
committerUlrich Drepper <drepper@redhat.com>2006-04-24 17:21:40 +0000
commitcf6ada44a2ad93c4155ce804ba3a1f2cf8cbe15f (patch)
tree31647f4108d43cbe1fa8306dcfdcc59f06f11cb0
parent589abe9337cac4420bbca7e2f9255214651f9c4d (diff)
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Always initialize in6ai.
-rw-r--r--ChangeLog4
-rw-r--r--sysdeps/posix/getaddrinfo.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4fda804d86..b72a1f0147 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-24 Ulrich Drepper <drepper@redhat.com>
+
+ * sysdeps/posix/getaddrinfo.c (getaddrinfo): Always initialize in6ai.
+
2006-04-24 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range): Use
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c
index 843e60bba3..e4fea334ca 100644
--- a/sysdeps/posix/getaddrinfo.c
+++ b/sysdeps/posix/getaddrinfo.c
@@ -1516,7 +1516,7 @@ getaddrinfo (const char *name, const char *service,
if ((hints->ai_flags & AI_CANONNAME) && name == NULL)
return EAI_BADFLAGS;
- struct in6addrinfo *in6ai;
+ struct in6addrinfo *in6ai = NULL;
size_t in6ailen;
bool seen_ipv4 = false;
bool seen_ipv6 = false;