Index: components/cast_certificate/cast_crl.cc |
diff --git a/components/cast_certificate/cast_crl.cc b/components/cast_certificate/cast_crl.cc |
index eb0b8d1d49dd27c5467c4e7dad3af178d78901e4..d805f7f8b8ae946fdbaa07d9873059ade5720ec5 100644 |
--- a/components/cast_certificate/cast_crl.cc |
+++ b/components/cast_certificate/cast_crl.cc |
@@ -145,8 +145,7 @@ bool VerifyCRL(const Crl& crl, |
net::CertPathBuilder path_builder(parsed_cert.get(), trust_store, |
signature_policy.get(), verification_time, |
&result); |
- net::CompletionStatus rv = path_builder.Run(base::Closure()); |
- DCHECK_EQ(rv, net::CompletionStatus::SYNC); |
+ path_builder.Run(); |
if (!result.HasValidPath()) { |
VLOG(2) << "CRL - Issuer certificate verification failed."; |
// TODO(crbug.com/634443): Log the error information. |