Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-08-22 19:57:50 +0400
committerRob Landley <rob@landley.net>2005-08-22 19:57:50 +0400
commit6417564eebe6b9591d9c001160d201194bd5e24a (patch)
treeb4cdfd16b6aea4804eccb72ea9f04c130074863a /libbb/xconnect.c
parentd00b3a5e944e7499bd061c0b8f9d9f0847528fce (diff)
Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.
Diffstat (limited to 'libbb/xconnect.c')
-rw-r--r--libbb/xconnect.c1
1 files changed, 1 insertions, 0 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));
}