1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial

buffer passed to NSS functions.
This commit is contained in:
Ulrich Drepper
2008-07-30 19:14:32 +00:00
parent bd7f48571d
commit 3c22738644
2 changed files with 4 additions and 1 deletions

View File

@ -697,7 +697,7 @@ gaih_inet (const char *name, const struct gaih_service *service,
old_res_options = _res.options;
_res.options &= ~RES_USE_INET6;
size_t tmpbuflen = 512;
size_t tmpbuflen = 1024;
char *tmpbuf = alloca (tmpbuflen);
while (!no_more)