Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.
diff --git a/networking/route.c b/networking/route.c
index 9e14944..7d4cb0b 100644
--- a/networking/route.c
+++ b/networking/route.c
@@ -329,8 +329,7 @@
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 @@
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