From: Harald Hoyer <[email protected]>
rm_rf_children() might have already closed the fd with closedir().
We just don't know.
---
src/core/switch-root.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/switch-root.c b/src/core/switch-root.c
index ed0a31e..1802dc1 100644
--- a/src/core/switch-root.c
+++ b/src/core/switch-root.c
@@ -119,7 +119,7 @@ int switch_root(const char *new_root) {
fail:
if (old_root_fd >= 0)
- close_nointr_nofail(old_root_fd);
+ close_nointr(old_root_fd);
return r;
}
--
1.7.10.2
_______________________________________________
systemd-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/systemd-devel