Fix bug in 'FindIntelCacheDesc'

It never iterates over the static arrays.
This commit is contained in:
Amos 2023-02-11 15:15:52 +01:00
parent 2e7786a4cf
commit 78288796e2

View File

@ -389,9 +389,10 @@ static void FindIntelCacheDesc(uint8_t nDesc, const IntelCacheDesc_t* pDesc, int
{
for (int i = 0; i < nDescCount; ++i)
{
if (pDesc->nDesc == nDesc)
const IntelCacheDesc_t& desc = pDesc[i];
if (desc.nDesc == nDesc)
{
nCache = pDesc->nCacheSize;
nCache = desc.nCacheSize;
nCacheDesc = nDesc;
break;
}