From 39065e40e0f00528980b35b52d8f5e13759e5a59 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 21 Jun 2013 14:03:08 +0200 Subject: libfuse: set FD_CLOEXEC also when receiving device fd from fusermount --- lib/mount.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') 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; } -- cgit v1.2.3