From 5978eb703ce0e64dd778a88c1ffffb76fe5e2202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Tue, 22 Mar 2016 16:27:51 +0200 Subject: fix gethostbyaddr_r to fill struct hostent.h_length as appropriate --- src/network/gethostbyaddr_r.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/network/gethostbyaddr_r.c') diff --git a/src/network/gethostbyaddr_r.c b/src/network/gethostbyaddr_r.c index 66e03309..0f1e61aa 100644 --- a/src/network/gethostbyaddr_r.c +++ b/src/network/gethostbyaddr_r.c @@ -64,6 +64,7 @@ int gethostbyaddr_r(const void *a, socklen_t l, int af, } h->h_addrtype = af; + h->h_length = l; h->h_name = h->h_aliases[0]; *res = h; return 0; -- cgit v1.2.1