Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.

This commit is contained in:
Rob Landley
2005-08-22 15:57:50 +00:00
parent d00b3a5e94
commit 6417564eeb
2 changed files with 3 additions and 4 deletions

View File

@ -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