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

Unified Diff: net/base/origin_bound_cert_store.cc

Issue 9005015: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 9 years 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 | « media/filters/reference_audio_renderer.cc ('k') | net/socket/ssl_client_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/origin_bound_cert_store.cc
diff --git a/net/base/origin_bound_cert_store.cc b/net/base/origin_bound_cert_store.cc
index 16d054a63a8d8bd530b68856ef39e38d02068799..fe2b45f3d47ab82a427fb411e3837b517c7cad4b 100644
--- a/net/base/origin_bound_cert_store.cc
+++ b/net/base/origin_bound_cert_store.cc
@@ -6,7 +6,9 @@
namespace net {
-OriginBoundCertStore::OriginBoundCert::OriginBoundCert() {}
+OriginBoundCertStore::OriginBoundCert::OriginBoundCert()
+ : type_(CLIENT_CERT_INVALID_TYPE) {
+}
OriginBoundCertStore::OriginBoundCert::OriginBoundCert(
const std::string& origin,
« no previous file with comments | « media/filters/reference_audio_renderer.cc ('k') | net/socket/ssl_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698