about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-03 12:33:00 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-03 12:33:00 +0200
commit964263bb8d650f1681665c55704fb01a8e725621 (patch)
treedd0f1ace0ca1ca539b96167bae918c38d3a5742b /sysdeps
parent1f22702ea29f93d6e8acc835317363c22134ba6f (diff)
downloadglibc-964263bb8d650f1681665c55704fb01a8e725621.tar.gz
glibc-964263bb8d650f1681665c55704fb01a8e725621.tar.xz
glibc-964263bb8d650f1681665c55704fb01a8e725621.zip
getaddrinfo: Release resolver context on error in gethosts [BZ #21885]
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/posix/getaddrinfo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c
index efa7118498..699411cc92 100644
--- a/sysdeps/posix/getaddrinfo.c
+++ b/sysdeps/posix/getaddrinfo.c
@@ -255,6 +255,8 @@ convert_hostent_to_gaih_addrtuple (const struct addrinfo *req,
       break;								      \
     if (!scratch_buffer_grow (tmpbuf))					      \
       {									      \
+	__resolv_context_enable_inet6 (res_ctx, res_enable_inet6);	      \
+	__resolv_context_put (res_ctx);					      \
 	result = -EAI_MEMORY;						      \
 	goto free_and_return;						      \
       }									      \