| Index: components/cast_certificate/cast_crl.cc
|
| diff --git a/components/cast_certificate/cast_crl.cc b/components/cast_certificate/cast_crl.cc
|
| index d805f7f8b8ae946fdbaa07d9873059ade5720ec5..6f48727c3141a6546601de1482e9da1b65a61fc6 100644
|
| --- a/components/cast_certificate/cast_crl.cc
|
| +++ b/components/cast_certificate/cast_crl.cc
|
| @@ -67,7 +67,7 @@ class CastCRLTrustStore {
|
| scoped_refptr<net::ParsedCertificate> cert =
|
| net::ParsedCertificate::CreateWithoutCopyingUnsafe(
|
| kCastCRLRootCaDer, sizeof(kCastCRLRootCaDer), {}, &errors);
|
| - CHECK(cert) << errors.ToDebugString();
|
| + CHECK(cert);
|
| // Enforce pathlen constraints and policies defined on the root certificate.
|
| scoped_refptr<net::TrustAnchor> anchor =
|
| net::TrustAnchor::CreateFromCertificateWithConstraints(std::move(cert));
|
|
|