From b2ce68ed260fce631ba6ad62e692a3a32e5b92fe Mon Sep 17 00:00:00 2001 From: szaka Date: Sat, 11 Nov 2006 20:12:40 +0000 Subject: [PATCH] fix FUSE API 26 crash during exit (Szeredi, Szaka) --- src/ntfs-3g.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index a8a7fa94..33dd8292 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -2025,8 +2025,8 @@ mount_failed: ctx->vol->minor_ver); fuse_loop(fh); - fuse_destroy(fh); fuse_unmount(opts.mnt_point, fc); + fuse_destroy(fh); ntfs_fuse_destroy(); return 0; }