From 3507698136298b2cb2507932514c1598001e85af Mon Sep 17 00:00:00 2001 From: Nikolaj Schlej Date: Thu, 5 Sep 2019 12:42:26 -0700 Subject: [PATCH] Remove broken revision check --- common/ffsparser.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/common/ffsparser.cpp b/common/ffsparser.cpp index 8210112..2bde63b 100644 --- a/common/ffsparser.cpp +++ b/common/ffsparser.cpp @@ -1280,12 +1280,7 @@ BOOLEAN FfsParser::microcodeHeaderValid(const INTEL_MICROCODE_HEADER* ucodeHeade ucodeHeader->DateYear > 0x2049) { return FALSE; } - - // Check Revision to be less than 0x100 - if (ucodeHeader->Revision > 0xFF) { - return FALSE; - } - + // Check LoaderRevision to be less than 0x100 if (ucodeHeader->LoaderRevision > 0xFF) { return FALSE;