From 346446c6dcd61cce52a6a4bc311c085c7a6296a3 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 25 Jul 2017 03:27:24 +0100 Subject: [PATCH] Prevent misdetection of QNX4 filesystem. --- DiscImageChef.Filesystems/FAT.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DiscImageChef.Filesystems/FAT.cs b/DiscImageChef.Filesystems/FAT.cs index 4f7f1efa2..85194a920 100644 --- a/DiscImageChef.Filesystems/FAT.cs +++ b/DiscImageChef.Filesystems/FAT.cs @@ -149,6 +149,9 @@ namespace DiscImageChef.Filesystems // NTFS if(oem_string == "NTFS " && bootable == 0xAA55 && fats_no == 0 && fat_sectors == 0) return false; + // QNX4 + if(oem_string == "FQNX4FS ") + return false; // HPFS if(16 + partition.Start <= partition.End)