getaddrinfo: Remove unreachable return statement from gaih_inet

This commit is contained in:
Florian Weimer 2017-08-08 18:48:05 +02:00
parent 086df229ee
commit 0df595b23a
2 changed files with 8 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2017-08-08 Florian Weimer <fweimer@redhat.com>
* sysdeps/posix/getaddrinfo.c (gaih_inet): Remove unreachable
return statement.
2017-08-08 H.J. Lu <hongjiu.lu@intel.com>
[BZ #21913]

View File

@ -420,13 +420,9 @@ gaih_inet (const char *name, const struct gaih_service *service,
alloca_account (sizeof (struct gaih_servtuple),
alloca_used);
if ((rc = gaih_inet_serv (service->name,
tp, req, newp, tmpbuf)))
{
if (rc)
continue;
return rc;
}
if (gaih_inet_serv (service->name,
tp, req, newp, tmpbuf) != 0)
continue;
*pst = newp;
pst = &(newp->next);