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

Unified Diff: net/base/cert_verify_proc_openssl.cc

Issue 9836001: Fix Android build following r128172 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/cert_verify_proc_openssl.cc
diff --git a/net/base/cert_verify_proc_openssl.cc b/net/base/cert_verify_proc_openssl.cc
index 31ac27dbf9886a40d5b108c056403473787128f6..a01bb44553cccf6103472173c413644549bf7086 100644
--- a/net/base/cert_verify_proc_openssl.cc
+++ b/net/base/cert_verify_proc_openssl.cc
@@ -229,7 +229,7 @@ int CertVerifyProcOpenSSL::VerifyInternal(X509Certificate* cert,
#if defined(OS_ANDROID)
std::vector<std::string> cert_bytes;
- GetChainDEREncodedBytes(&cert_bytes);
+ GetChainDEREncodedBytes(cert, &cert_bytes);
wtc 2012/03/22 17:43:13 Should this be cert->GetChainDEREncodedBytes(&
verify_attempted = VerifyFromAndroidTrustManager(cert_bytes, verify_result);
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698