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

Unified Diff: chrome/profile_import/profile_import_thread.cc

Issue 2943012: Coverity: Fix ProfileImportThread::OnImportStart dereferencing importer_ before null check. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 5 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/profile_import/profile_import_thread.cc
diff --git a/chrome/profile_import/profile_import_thread.cc b/chrome/profile_import/profile_import_thread.cc
index 4a7ca138d1d63843a0d036f8de599bea8982e774..4fa7cc3a49b025337882c25f37a8bf787e556bfd 100644
--- a/chrome/profile_import/profile_import_thread.cc
+++ b/chrome/profile_import/profile_import_thread.cc
@@ -49,16 +49,16 @@ void ProfileImportThread::OnImportStart(
ImporterList importer_list;
importer_ = importer_list.CreateImporterByType(profile_info.browser_type);
- importer_->AddRef(); // Balanced in Cleanup().
- importer_->set_import_to_bookmark_bar(import_to_bookmark_bar);
- items_to_import_ = items;
-
if (!importer_) {
Send(new ProfileImportProcessHostMsg_Import_Finished(false,
"Importer could not be created."));
return;
}
+ importer_->AddRef(); // Balanced in Cleanup().
+ importer_->set_import_to_bookmark_bar(import_to_bookmark_bar);
+ items_to_import_ = items;
+
// Create worker thread in which importer runs.
import_thread_.reset(new base::Thread("import_thread"));
base::Thread::Options options;
« 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