Skip to content

Commit

Permalink
Update 1.0.14 to work with ustealth
Browse files Browse the repository at this point in the history
  • Loading branch information
Mystro256 committed Apr 5, 2016
1 parent 1e06c67 commit 2715921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/partition.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ PARTITION* _FAT_partition_constructor_buf (const DISC_INTERFACE* disc, uint32_t
}

// Make sure it is a valid MBR or boot sector
if ( (sectorBuffer[BPB_bootSig_55] != 0x55) || (sectorBuffer[BPB_bootSig_AA] != 0xAA)) {
if ( (sectorBuffer[BPB_bootSig_55] != 0x55) || (sectorBuffer[BPB_bootSig_AA] != 0xAA && sectorBuffer[BPB_bootSig_AA] != 0xAB)) {
return NULL;
}

Expand Down

0 comments on commit 2715921

Please sign in to comment.