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

Unified Diff: chrome/browser/dom_ui/options/certificate_manager_handler.cc

Issue 6332004: Initialized 3 boolean variables.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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: chrome/browser/dom_ui/options/certificate_manager_handler.cc
===================================================================
--- chrome/browser/dom_ui/options/certificate_manager_handler.cc (revision 71588)
+++ chrome/browser/dom_ui/options/certificate_manager_handler.cc (working copy)
@@ -779,9 +779,9 @@
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);
« 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