Commit 3be7f307 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

cryptnet: Continue checking the revocation urls if one is offline.

parent 2c78d581
......@@ -1553,7 +1553,8 @@ static DWORD verify_cert_revocation_from_dist_points_ext(
endTime = timeout = 0;
if (!ret)
error = GetLastError();
for (j = 0; !error && j < urlArray->cUrl; j++)
/* continue looping if one was offline; break if revoked or timed out */
for (j = 0; (!error || error == CRYPT_E_REVOCATION_OFFLINE) && j < urlArray->cUrl; j++)
{
PCCRL_CONTEXT crl;
......
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