mirror of git://sourceware.org/git/glibc.git
* sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
buffer passed to NSS functions.
This commit is contained in:
parent
bd7f48571d
commit
3c22738644
|
|
@ -1,5 +1,8 @@
|
|||
2008-07-30 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
|
||||
buffer passed to NSS functions.
|
||||
|
||||
* nscd/connections.c (nscd_init): Type if preprocessor directive.
|
||||
|
||||
* sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PACCEPT):
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue