aboutsummaryrefslogtreecommitdiff
path: root/lib/mount.c
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <mszeredi@suse.cz>2013-06-21 14:03:08 +0200
committerGravatar Miklos Szeredi <mszeredi@suse.cz>2013-06-21 14:03:08 +0200
commit39065e40e0f00528980b35b52d8f5e13759e5a59 (patch)
tree617f73f115d410a726b9803d66ed3daa97c60244 /lib/mount.c
parentf0dcdad3a608e1f946b3cb2cb87b98f79d56b60e (diff)
libfuse: set FD_CLOEXEC also when receiving device fd from fusermount
Diffstat (limited to 'lib/mount.c')
-rw-r--r--lib/mount.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/mount.c b/lib/mount.c
index d7ba571..cb5d190 100644
--- a/lib/mount.c
+++ b/lib/mount.c
@@ -404,6 +404,9 @@ static int fuse_mount_fusermount(const char *mountpoint, struct mount_opts *mo,
waitpid(pid, NULL, 0); /* bury zombie */
}
+ if (rv >= 0)
+ fcntl(rv, F_SETFD, FD_CLOEXEC);
+
return rv;
}