2.9
[glibc/nacl-glibc.git] / posix / bug-ga2.c
blob5ea759b8ce13fa22883ba5f137d5adcccb738283
1 /* Test case by Sam Varshavchik <mrsam@courier-mta.com>. */
2 #include <mcheck.h>
3 #include <netdb.h>
4 #include <stdio.h>
5 #include <string.h>
7 int
8 main (void)
10 struct addrinfo hints, *res;
11 int i, ret;
13 mtrace ();
14 for (i = 0; i < 100; i++)
16 memset (&hints, 0, sizeof (hints));
17 hints.ai_family = PF_UNSPEC;
18 hints.ai_socktype = SOCK_STREAM;
20 ret = getaddrinfo ("www.gnu.org", "http", &hints, &res);
22 if (ret)
24 printf ("%s\n", gai_strerror (ret));
25 return 1;
27 freeaddrinfo (res);
29 return 0;