Movatterモバイル変換
[0]ホーム
This is the mail archive of thelibc-alpha@sourceware.orgmailing list for theglibc project.
[PATCH COMMITTED] getaddrinfo: Remove unreachable return statement from gaih_inet
- From: fweimer at redhat dot com (Florian Weimer)
- To: libc-alpha at sourceware dot org
- Date: Tue, 08 Aug 2017 18:55:14 +0200
- Subject: [PATCH COMMITTED] getaddrinfo: Remove unreachable return statement from gaih_inet
- Authentication-results: sourceware.org; auth=none
- Authentication-results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com
- Authentication-results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=fweimer at redhat dot com
- Dmarc-filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 893BC5D689
2017-08-08 Florian Weimer <fweimer@redhat.com>* sysdeps/posix/getaddrinfo.c (gaih_inet): Remove unreachablereturn statement.diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.cindex 699411c..09f85fc 100644--- a/sysdeps/posix/getaddrinfo.c+++ b/sysdeps/posix/getaddrinfo.c@@ -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);
[8]ページ先頭