summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/basic/fs-util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c
index 07aeff0af..eec1fbb37 100644
--- a/src/basic/fs-util.c
+++ b/src/basic/fs-util.c
@@ -745,7 +745,7 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
/* Two dots? Then chop off the last bit of what we already found out. */
if (path_equal(first, "/..")) {
_cleanup_free_ char *parent = NULL;
- int fd_parent = -1;
+ _cleanup_close_ int fd_parent = -1;
/* If we already are at the top, then going up will not change anything. This is in-line with
* how the kernel handles this. */
@@ -780,6 +780,7 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
safe_close(fd);
fd = fd_parent;
+ fd_parent = -1;
continue;
}