apfs-fuse
apfs-fuse copied to clipboard
relative path
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.
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.
Ok, will look into that ...