summaryrefslogtreecommitdiffstats
path: root/fuse/mount_bsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'fuse/mount_bsd.c')
-rw-r--r--fuse/mount_bsd.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/fuse/mount_bsd.c b/fuse/mount_bsd.c
index 62443ac25..3aec3e3eb 100644
--- a/fuse/mount_bsd.c
+++ b/fuse/mount_bsd.c
@@ -228,18 +228,21 @@ void fuse_kern_unmount(const char *mountpoint, int fd)
(void)mountpoint;
if (fstat(fd, &sbuf) == -1)
- return;
+ goto out;
devname_r(sbuf.st_rdev, S_IFCHR, dev, 128);
if (strncmp(dev, "fuse", 4))
- return;
+ goto out;
strtol(dev + 4, &ep, 10);
if (*ep != '\0')
- return;
+ goto out;
do_unmount(dev, fd);
+
+out:
+ close(fd);
}
/* Check if kernel is doing init in background */