Movatterモバイル変換


[0]ホーム

URL:


This is the mail archive of thelibc-alpha@sourceware.orgmailing list for theglibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav:[Date Prev] [Date Next][Thread Prev] [Thread Next]
Other format:[Raw text]

[PATCH COMMITTED] getaddrinfo: Remove unreachable return statement from gaih_inet


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);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav:[Date Prev] [Date Next][Thread Prev] [Thread Next]

[8]ページ先頭

©2009-2026 Movatter.jp