# HG changeset patch # User Patrick McManus # Date 1221162875 14400 # Node ID 41cff216ca818dbe746bb2a550f695b0f3e482a8 # Parent e6cbdb32fb22593b0fe074bf05f83217384e6400 default ipv4 lookup buffer not large enough with 64 bit ptrs diff -r e6cbdb32fb22 -r 41cff216ca81 sysdeps/posix/getaddrinfo.c --- a/sysdeps/posix/getaddrinfo.c Thu Sep 11 15:06:20 2008 -0400 +++ b/sysdeps/posix/getaddrinfo.c Thu Sep 11 15:54:35 2008 -0400 @@ -511,7 +511,7 @@ gaih_inet (const char *name, const struc || (req->ai_flags & AI_ALL) == 0))) { int family = req->ai_family; - size_t tmpbuflen = 512; + size_t tmpbuflen = 1024; char *tmpbuf = alloca (tmpbuflen); int rc; struct hostent th;