aboutsummaryrefslogtreecommitdiff
path: root/libbb/inet_common.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-11-29 16:39:28 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-11-29 16:39:28 +0100
commit1a7256ac38284caffd2a0de2250364369059be69 (patch)
tree0e97ac73f8709563c82424b96c5f9d8fceacd902 /libbb/inet_common.c
parent72745632a13ccd12232127b31e1656f2f7ebcaff (diff)
downloadbusybox-1a7256ac38284caffd2a0de2250364369059be69.tar.gz
chpst: fix a bug where -U USER was using wrong USER (one from -u USER)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/inet_common.c')
-rw-r--r--libbb/inet_common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/inet_common.c b/libbb/inet_common.c
index 0f4fca1a2..b3e0802ee 100644
--- a/libbb/inet_common.c
+++ b/libbb/inet_common.c
@@ -175,8 +175,7 @@ int FAST_FUNC INET6_resolve(const char *name, struct sockaddr_in6 *sin6)
return -1;
}
memcpy(sin6, ai->ai_addr, sizeof(*sin6));
- if (ai)
- freeaddrinfo(ai);
+ freeaddrinfo(ai);
return 0;
}