jief666
jief666
There was a arithmetic problem on 32 bits platform when off_t is 64 bits. Basically, we have to make sure to convert to 64 bits BEFORE the multiplication. Hence things...
It's not issue, just a question. Can this bootloader be used on 64 bits ? Does your bootloader bypass the EFILoginUI on 64 bit machine ? Thanks.
@tomkoen : here is my first version that integrate HFS & APFS disk images, encrypted or clear, sparsebundle or plain files. I didn't test every single possibility (APF or HSF,...
Hi, thanks for your great project. Let me help a bit with some warning removal. There was no bug, just some signed/unsigned, or downcast that has to be made explicit...
I used assertions in case of downcasting. Changed some var type (like size_t instead of int, etc.). Changed DecompressZLib and DecompressBZ2 parameters because the underlying lib cannot handle decompressing size_t...
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...
When I launch from Xcode, it freeze in DADiskCreateFromVolumePath. If I put a sleep of 200 nano seconds just before, it works (I guess the time needed is machine dependant)....
Hi, if I put a Output prefix in "Build Artifact" tab of C/C++ Settings, the hex file not generated anymore. Regards.
Safe downcast, explained in comment. 1 or 2 unused var removed. Change to uint64_t some var used for offset. I also better protected read function with `if ( count <...