summaryrefslogtreecommitdiff
path: root/src/shared/path-util.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-01-07 10:28:04 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-01-18 19:06:48 -0500
commit2695c5c44e028d1bc07404baf3357e5a6017fc57 (patch)
treea2016f88be960359644cd57ab9e31ebcaef6c417 /src/shared/path-util.c
parent302fbdf29eb0ad4ca1fe8ee18755edad7db11b37 (diff)
Add initialization helper for file_handle_union
Diffstat (limited to 'src/shared/path-util.c')
-rw-r--r--src/shared/path-util.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/shared/path-util.c b/src/shared/path-util.c
index ee87c7493..00d2d4499 100644
--- a/src/shared/path-util.c
+++ b/src/shared/path-util.c
@@ -454,10 +454,7 @@ char* path_join(const char *root, const char *path, const char *rest) {
int path_is_mount_point(const char *t, bool allow_symlink) {
- union file_handle_union h = {
- .handle.handle_bytes = MAX_HANDLE_SZ
- };
-
+ union file_handle_union h = FILE_HANDLE_INIT;
int mount_id = -1, mount_id_parent = -1;
_cleanup_free_ char *parent = NULL;
struct stat a, b;