mirror of git://sourceware.org/git/glibc.git
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>
|
2011-06-29 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
* nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
|
* 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);
|
tmpbuf = malloc (tmpbuflen);
|
||||||
if (tmpbuf == NULL)
|
if (tmpbuf == NULL)
|
||||||
{
|
{
|
||||||
|
_res.options |= old_res_options & RES_USE_INET6;
|
||||||
result = -EAI_MEMORY;
|
result = -EAI_MEMORY;
|
||||||
goto free_and_return;
|
goto free_and_return;
|
||||||
}
|
}
|
||||||
|
@ -862,6 +863,7 @@ gaih_inet (const char *name, const struct gaih_service *service,
|
||||||
2 * tmpbuflen);
|
2 * tmpbuflen);
|
||||||
if (newp == NULL)
|
if (newp == NULL)
|
||||||
{
|
{
|
||||||
|
_res.options |= old_res_options & RES_USE_INET6;
|
||||||
result = -EAI_MEMORY;
|
result = -EAI_MEMORY;
|
||||||
goto free_and_return;
|
goto free_and_return;
|
||||||
}
|
}
|
||||||
|
@ -981,6 +983,8 @@ gaih_inet (const char *name, const struct gaih_service *service,
|
||||||
canonbuf = malloc (max_fqdn_len);
|
canonbuf = malloc (max_fqdn_len);
|
||||||
if (canonbuf == NULL)
|
if (canonbuf == NULL)
|
||||||
{
|
{
|
||||||
|
_res.options
|
||||||
|
|= old_res_options & RES_USE_INET6;
|
||||||
result = -EAI_MEMORY;
|
result = -EAI_MEMORY;
|
||||||
goto free_and_return;
|
goto free_and_return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue