mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
buffer passed to NSS functions.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2008-07-30 Ulrich Drepper <drepper@redhat.com>
|
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.
|
* nscd/connections.c (nscd_init): Type if preprocessor directive.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PACCEPT):
|
* 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;
|
old_res_options = _res.options;
|
||||||
_res.options &= ~RES_USE_INET6;
|
_res.options &= ~RES_USE_INET6;
|
||||||
|
|
||||||
size_t tmpbuflen = 512;
|
size_t tmpbuflen = 1024;
|
||||||
char *tmpbuf = alloca (tmpbuflen);
|
char *tmpbuf = alloca (tmpbuflen);
|
||||||
|
|
||||||
while (!no_more)
|
while (!no_more)
|
||||||
|
Reference in New Issue
Block a user