cpucontrol: fix extended signature matching code to avoid fallthough

PR:		256502
MFC after:	1 week
This commit is contained in:
Dan Nelson 2021-06-14 15:28:16 -04:00 committed by Mark Johnston
parent a100217489
commit 87799c5f85

View File

@ -242,8 +242,8 @@ intel_update(const struct ucode_update_params *params)
(flags & ext_table[i].cpu_flags) != 0)
goto matched;
}
} else
goto fail;
}
goto fail;
matched:
if (revision >= fw_header->revision) {