[systemd-devel] [PATCH] switch-root: do not use close old_root_fd after rm_rf_children()
harald at redhat.com
harald at redhat.com
Wed Jul 11 23:44:01 PDT 2012
From: Harald Hoyer <harald at redhat.com>
rm_rf_children() has already closed the fd with closedir().
---
src/core/switch-root.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/core/switch-root.c b/src/core/switch-root.c
index ed0a31e..9832a52 100644
--- a/src/core/switch-root.c
+++ b/src/core/switch-root.c
@@ -111,8 +111,10 @@ int switch_root(const char *new_root) {
if (fstat(old_root_fd, &rb) < 0)
log_warning("Failed to stat old root directory, leaving: %m");
- else
+ else {
rm_rf_children(old_root_fd, false, false, &rb);
+ old_root_fd = -1;
+ }
}
r = 0;
--
1.7.10.2
More information about the systemd-devel
mailing list