From 6417564eebe6b9591d9c001160d201194bd5e24a Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 22 Aug 2005 15:57:50 +0000 Subject: [PATCH] Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles. --- libbb/xconnect.c | 1 + networking/route.c | 6 ++---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/libbb/xconnect.c b/libbb/xconnect.c index 09a1daad1..1e5799e51 100644 --- a/libbb/xconnect.c +++ b/libbb/xconnect.c @@ -64,6 +64,7 @@ int xconnect(struct sockaddr_in *s_addr) int s = socket(AF_INET, SOCK_STREAM, 0); if (connect(s, (struct sockaddr_in *)s_addr, sizeof(struct sockaddr_in)) < 0) { + if (ENABLE_FEATURE_CLEAN_UP) close(s); bb_perror_msg_and_die("Unable to connect to remote host (%s)", inet_ntoa(s_addr->sin_addr)); } diff --git a/networking/route.c b/networking/route.c index 9e14944c9..7d4cb0b76 100644 --- a/networking/route.c +++ b/networking/route.c @@ -329,8 +329,7 @@ static void INET_setroute(int action, char **args) bb_perror_msg_and_die("SIOC[ADD|DEL]RT"); } - /* Don't bother closing, as we're exiting after we return anyway. */ - /* close(skfd); */ + if (ENABLE_FEATURE_CLEAN_UP) close(skfd); } #ifdef CONFIG_FEATURE_IPV6 @@ -440,8 +439,7 @@ static void INET6_setroute(int action, char **args) bb_perror_msg_and_die("SIOC[ADD|DEL]RT"); } - /* Don't bother closing, as we're exiting after we return anyway. */ - /* close(skfd); */ + if (ENABLE_FEATURE_CLEAN_UP) close(skfd); } #endif