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

Unified Diff: content/browser/download/drag_download_file.cc

Issue 9110022: [Coverity] Fix uninitialized member (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 12 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: content/browser/download/drag_download_file.cc
diff --git a/content/browser/download/drag_download_file.cc b/content/browser/download/drag_download_file.cc
index 77eb41af8e522fb76e490f502fc359cc47a4f062..3302d1d938f1382823fcb5345647664811b426ee 100644
--- a/content/browser/download/drag_download_file.cc
+++ b/content/browser/download/drag_download_file.cc
@@ -34,6 +34,9 @@ DragDownloadFile::DragDownloadFile(
drag_message_loop_(MessageLoop::current()),
is_started_(false),
is_successful_(false),
+#if defined(OS_WIN)
+ is_running_nested_message_loop_(false),
+#endif
download_manager_(NULL),
download_manager_observer_added_(false),
download_item_(NULL) {
« 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