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

Unified Diff: chrome/browser/importer/external_process_importer_host.cc

Issue 9549014: Coverity: No uninitialized fields in constructor. (CID 9446) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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/importer/external_process_importer_host.cc
diff --git a/chrome/browser/importer/external_process_importer_host.cc b/chrome/browser/importer/external_process_importer_host.cc
index a9ad1460ae77594533d8c253d76bf6437ce479d2..86ab345ed271b0f195e0e5cc06cae18b6e304b03 100644
--- a/chrome/browser/importer/external_process_importer_host.cc
+++ b/chrome/browser/importer/external_process_importer_host.cc
@@ -9,7 +9,9 @@
#include "chrome/browser/importer/in_process_importer_bridge.h"
ExternalProcessImporterHost::ExternalProcessImporterHost()
- : items_(0),
+ : client_(NULL),
+ source_profile_(NULL),
+ items_(0),
cancelled_(false),
import_process_launched_(false) {
}
« 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