[BusyBox] libbb/xconnect.c: Clean up. [PATCH]

Shaun Jackman sjackman at gmail.com
Mon Aug 22 08:06:00 UTC 2005


2005-08-22  Shaun Jackman  <sjackman at gmail.com>

	* libbb/xconnect.c (xconnect): Clean up the file descriptor.

===================================================================
--- libbb/xconnect.c	(revision 11222)
+++ libbb/xconnect.c	(working copy)
@@ -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));
 	}



More information about the busybox mailing list