Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: net/base/cert_verify_result.cc

Issue 6874039: Return the constructed certificate chain in X509Certificate::Verify() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ensure the EE cert is marked as a TLS server cert, not a CA cert Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/cert_verify_result.cc
diff --git a/net/base/cert_verify_result.cc b/net/base/cert_verify_result.cc
index 54e15f545f5c0be5ec1019726027716d407a19f8..d51566b1f5a0cee01aa53fd38709008523c52862 100644
--- a/net/base/cert_verify_result.cc
+++ b/net/base/cert_verify_result.cc
@@ -4,6 +4,8 @@
#include "net/base/cert_verify_result.h"
agl 2011/04/18 13:50:27 No need for this blank line.
+#include "net/base/x509_certificate.h"
+
namespace net {
CertVerifyResult::CertVerifyResult() {
@@ -14,6 +16,7 @@ CertVerifyResult::~CertVerifyResult() {
}
void CertVerifyResult::Reset() {
+ verified_cert = NULL;
cert_status = 0;
has_md5 = false;
has_md2 = false;

Powered by Google App Engine
This is Rietveld 408576698