From f79ec016a7174af2060813cbf092711ce09e6024 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 8 Sep 2013 04:15:31 +0000 Subject: [PATCH 1/1] net: Kill dead code in makesock_addrinfo(). Either src or dst is NULL, hence the condition is never true. --- net.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/net.c b/net.c index 07a646b7..d1c6eb51 100644 --- a/net.c +++ b/net.c @@ -435,10 +435,6 @@ static int makesock_addrinfo(unsigned l4type, bool passive, struct addrinfo *ai, /* Iterate over all src/dst combination, exhausting dst first */ for (src = local, dst = remote; src != NULL || dst != NULL; /* no op */ ) { - if (src && dst && src->ai_family == AF_INET - && dst->ai_family == AF_INET6) - goto get_next_dst; /* v4 -> v6 is not possible */ - ret = socket(src ? src->ai_family : dst->ai_family, sock_type(l4type), l4type); if (ret < 0) -- 2.30.2