crypt32: Fix expected/got mixup.
This commit is contained in:
parent
eeec9bf349
commit
5f1c27d821
|
@ -1212,8 +1212,8 @@ static void checkSimpleChainStatus(const CERT_SIMPLE_CHAIN *simpleChain,
|
||||||
DWORD i;
|
DWORD i;
|
||||||
|
|
||||||
for (i = 0; i < simpleChain->cElement; i++)
|
for (i = 0; i < simpleChain->cElement; i++)
|
||||||
checkElementStatus(&simpleChain->rgpElement[i]->TrustStatus,
|
checkElementStatus(&simpleChainStatus->rgElementStatus[i],
|
||||||
&simpleChainStatus->rgElementStatus[i], ignore, todo, testIndex,
|
&simpleChain->rgpElement[i]->TrustStatus, ignore, todo, testIndex,
|
||||||
chainIndex, i);
|
chainIndex, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue