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));
}
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
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