about summary refs log tree commit diff
path: root/posix/bug-ga1.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-02-16 19:07:47 +0000
committerUlrich Drepper <drepper@redhat.com>2004-02-16 19:07:47 +0000
commit380f06d3979d9608b4b9abb0540e6832adac004a (patch)
tree6d3d8e4daf9a13bda96745abb15727e0b58890c1 /posix/bug-ga1.c
parente2366611448fda03a8a7fcca11a7fdb157a1981f (diff)
downloadglibc-380f06d3979d9608b4b9abb0540e6832adac004a.tar.gz
glibc-380f06d3979d9608b4b9abb0540e6832adac004a.tar.xz
glibc-380f06d3979d9608b4b9abb0540e6832adac004a.zip
Update.
	* posix/Makefile (tests): Add bug-ga1.
	* posix/bug-ga1.c: New file.
Diffstat (limited to 'posix/bug-ga1.c')
-rw-r--r--posix/bug-ga1.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/posix/bug-ga1.c b/posix/bug-ga1.c
new file mode 100644
index 0000000000..39e45d7845
--- /dev/null
+++ b/posix/bug-ga1.c
@@ -0,0 +1,22 @@
+/* Test case by Anders Carlsson <andersca@gnome.org>.  */
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netdb.h>
+#include <stdio.h>
+
+int
+main (void)
+{
+  struct addrinfo req, *ai;
+  char name[] = "3ffe:0200:0064:0000:0202:b3ff:fe16:ddc5";
+
+  memset (&req, '\0', sizeof req);
+  req.ai_family = AF_INET6;
+
+  /* This call used to crash.  We cannot expect the test machine to have
+     IPv6 enabled so we just check that the call returns.  */
+  getaddrinfo (name, NULL, &req, &ai);
+
+  puts ("success!");
+  return 0;
+}