summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/dom_ui/options/certificate_manager_handler.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/dom_ui/options/certificate_manager_handler.cc b/chrome/browser/dom_ui/options/certificate_manager_handler.cc
index ac98bf0..e14d684 100644
--- a/chrome/browser/dom_ui/options/certificate_manager_handler.cc
+++ b/chrome/browser/dom_ui/options/certificate_manager_handler.cc
@@ -779,9 +779,9 @@ void CertificateManagerHandler::ImportCAFileRead(int read_errno,
void CertificateManagerHandler::ImportCATrustSelected(const ListValue* args) {
bool fail = false;
- bool trust_ssl;
- bool trust_email;
- bool trust_obj_sign;
+ bool trust_ssl = false;
+ bool trust_email = false;
+ bool trust_obj_sign = false;
fail |= !CallbackArgsToBool(args, 0, &trust_ssl);
fail |= !CallbackArgsToBool(args, 1, &trust_email);
fail |= !CallbackArgsToBool(args, 2, &trust_obj_sign);