mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
getaddrinfo: Remove unreachable return statement from gaih_inet
This commit is contained in:
parent
086df229ee
commit
0df595b23a
@ -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]
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user