apfs-fuse icon indicating copy to clipboard operation
apfs-fuse copied to clipboard

relative path

Open jief666 opened this issue 6 years ago • 2 comments

If mountpoint is a relative path, fuse hangs in fuse_mount. It freezes in DADiskCreateFromVolumePath (helper.c, line 285).

Using Mac OS High Sierra and latest fuse from github.

Bravo for your work.

jief666 avatar Jul 03 '18 12:07 jief666

Fix not hard, I just added mountpoint = realpath(mountpoint, NULL); after mountpoint = argv[optind + 1]; NOTE : it's done by fuse when using fuse_main_real (line 127 of helper.c in fuse library).

Maybe #46 could be related to that (something that fuse_main_real do that prevent freeze in DADiskCreateFromVolumePath.

jief666 avatar Jul 03 '18 13:07 jief666

Ok, will look into that ...

sgan81 avatar Aug 19 '18 20:08 sgan81