Index: net/cert/cert_verify_proc_openssl.cc |
diff --git a/net/cert/cert_verify_proc_openssl.cc b/net/cert/cert_verify_proc_openssl.cc |
index 31543f54402428c3c943ebb091eb41d908c72ca3..d822bc00d6cb80a8449c9a24752411d179b89286 100644 |
--- a/net/cert/cert_verify_proc_openssl.cc |
+++ b/net/cert/cert_verify_proc_openssl.cc |
@@ -104,12 +104,6 @@ void GetCertChainInfo(X509_STORE_CTX* store_ctx, |
} else { |
verified_chain.push_back(cert); |
} |
- |
- // Only check the algorithm status for certificates that are not in the |
- // trust store. |
- if (i < static_cast<size_t>(store_ctx->last_untrusted)) { |
- FillCertVerifyResultWeakSignature(cert, i == 0, verify_result); |
- } |
} |
// Set verify_result->verified_cert and |