mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Make sure RES_USE_INET6 is always restored
This commit is contained in:
parent
2c0e54ff32
commit
89f654c57b
@ -1,3 +1,8 @@
|
||||
2011-06-30 Andreas Schwab <schwab@redhat.com>
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
|
||||
is always restored.
|
||||
|
||||
2011-06-29 Ulrich Drepper <drepper@gmail.com>
|
||||
|
||||
* nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
|
||||
|
@ -818,6 +818,7 @@ gaih_inet (const char *name, const struct gaih_service *service,
|
||||
tmpbuf = malloc (tmpbuflen);
|
||||
if (tmpbuf == NULL)
|
||||
{
|
||||
_res.options |= old_res_options & RES_USE_INET6;
|
||||
result = -EAI_MEMORY;
|
||||
goto free_and_return;
|
||||
}
|
||||
@ -862,6 +863,7 @@ gaih_inet (const char *name, const struct gaih_service *service,
|
||||
2 * tmpbuflen);
|
||||
if (newp == NULL)
|
||||
{
|
||||
_res.options |= old_res_options & RES_USE_INET6;
|
||||
result = -EAI_MEMORY;
|
||||
goto free_and_return;
|
||||
}
|
||||
@ -981,6 +983,8 @@ gaih_inet (const char *name, const struct gaih_service *service,
|
||||
canonbuf = malloc (max_fqdn_len);
|
||||
if (canonbuf == NULL)
|
||||
{
|
||||
_res.options
|
||||
|= old_res_options & RES_USE_INET6;
|
||||
result = -EAI_MEMORY;
|
||||
goto free_and_return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user