summaryrefslogtreecommitdiffstats
path: root/src/basic/fs-util.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-01-21 11:07:10 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-01-21 11:07:14 +0100
commit2b6d2dda6b7eb2afb1df47df158b212abde2ef1c (patch)
treea9a5d644353c88ef29c95e74b85b669276780dfb /src/basic/fs-util.c
parentman: document that sd_j_stream_fd is signal safe (#7942) (diff)
downloadsystemd-2b6d2dda6b7eb2afb1df47df158b212abde2ef1c.tar.xz
systemd-2b6d2dda6b7eb2afb1df47df158b212abde2ef1c.zip
fs-util: use _cleanup_close_ attribute
The commit f14f1806e329fe92d01f15c22a384702f0cb4ae0 introduced CHASE_SAFE flag. When the flag is set, then `fd_parent` may not be properly closed. This sets `_cleanup_close_` attribute to `fd_parent`. Thus, now `fd_parent` is always closed properly.
Diffstat (limited to '')
-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 4bf25e32e0..87d743b617 100644
--- a/src/basic/fs-util.c
+++ b/src/basic/fs-util.c
@@ -730,7 +730,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. */
@@ -765,6 +765,7 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
safe_close(fd);
fd = fd_parent;
+ fd_parent = -1;
continue;
}