Commit 5f1c27d8 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Fix expected/got mixup.

parent eeec9bf3
......@@ -1212,8 +1212,8 @@ static void checkSimpleChainStatus(const CERT_SIMPLE_CHAIN *simpleChain,
DWORD i;
for (i = 0; i < simpleChain->cElement; i++)
checkElementStatus(&simpleChain->rgpElement[i]->TrustStatus,
&simpleChainStatus->rgElementStatus[i], ignore, todo, testIndex,
checkElementStatus(&simpleChainStatus->rgElementStatus[i],
&simpleChain->rgpElement[i]->TrustStatus, ignore, todo, testIndex,
chainIndex, i);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment