Skip to content
Permalink
Browse files
Merge pull request #8621 from JosJuice/volumeverifier-invalid-partition
Fix VolumeVerifier not showing a problem for invalid partitions
  • Loading branch information
Tilka committed Feb 10, 2020
2 parents ce1bc0b + 07df659 commit 103b3ab
Showing 1 changed file with 4 additions and 3 deletions.
@@ -557,10 +557,11 @@ bool VolumeVerifier::CheckPartition(const Partition& partition)
}
}

// The loop above ends without breaking for discs that legitimately lack updates.
// No such discs have been released to end users. Most such discs are debug signed,
// The loop above ends without setting invalid_disc_header for discs that legitimately lack
// updates. No such discs have been released to end users. Most such discs are debug signed,
// but there is apparently at least one that is retail signed, the Movie-Ch Install Disc.
return false;
if (!invalid_disc_header)
return false;
}
if (invalid_disc_header)
{

0 comments on commit 103b3ab

Please sign in to comment.