aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_lowlevel.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fuse_lowlevel.c')
-rw-r--r--lib/fuse_lowlevel.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index a5dbe17..09ee8da 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -2657,7 +2657,7 @@ static int fuse_ll_opt_proc(void *data, const char *arg, int key,
return 1;
}
-static void fuse_ll_destroy(struct fuse_session *f)
+static void fuse_session_destroy(struct fuse_session *f)
{
struct fuse_ll_pipe *llp;
@@ -2671,17 +2671,11 @@ static void fuse_ll_destroy(struct fuse_session *f)
pthread_key_delete(f->pipe_key);
pthread_mutex_destroy(&f->lock);
free(f->cuse_data);
+ close(f->fd);
+ destroy_mount_opts(f->mo);
free(f);
}
-void fuse_session_destroy(struct fuse_session *se)
-{
- fuse_ll_destroy(se);
- close(se->fd);
- destroy_mount_opts(se->mo);
- free(se);
-}
-
static void fuse_ll_pipe_destructor(void *data)
{