mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* DiscImageChef.Filesystems/FAT.cs:
Add sanity check for BPB. * DiscImageChef.Filesystems/AppleHFS.cs: Correct calling of Read2048SectorAs512() * DiscImageChef.Decoders/CD/Sector.cs: * DiscImageChef.Decoders/DiscImageChef.Decoders.csproj: Added CD sector descrambling.
This commit is contained in:
@@ -85,6 +85,9 @@ namespace DiscImageChef.Filesystems
|
||||
|
||||
if(bpb_found)
|
||||
{
|
||||
if(bpb_sector[0x0D] == 0)
|
||||
return false;
|
||||
|
||||
first_fat_entry = BitConverter.ToUInt32(fat_sector, 0); // Easier to manage
|
||||
|
||||
DicConsole.DebugWriteLine("FAT plugin", "fats_no = {0}", fats_no);
|
||||
|
||||
Reference in New Issue
Block a user