commit | 6417564eebe6b9591d9c001160d201194bd5e24a | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Mon Aug 22 15:57:50 2005 +0000 |
committer | Rob Landley <rob@landley.net> | Mon Aug 22 15:57:50 2005 +0000 |
tree | b4cdfd16b6aea4804eccb72ea9f04c130074863a | |
parent | d00b3a5e944e7499bd061c0b8f9d9f0847528fce [diff] [blame] |
Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.
diff --git a/libbb/xconnect.c b/libbb/xconnect.c index 09a1daa..1e5799e 100644 --- a/libbb/xconnect.c +++ b/libbb/xconnect.c
@@ -64,6 +64,7 @@ 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)); }