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

Unified Diff: webkit/fileapi/file_system_operation.cc

Issue 9594005: Coverity: Fix an uninitialized member variable. (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: webkit/fileapi/file_system_operation.cc
diff --git a/webkit/fileapi/file_system_operation.cc b/webkit/fileapi/file_system_operation.cc
index 67d33a6b987c4bf0a68fd63641e3558f7f9aef04..777790cce6d22964ecc3c5e5276039dd19e142c5 100644
--- a/webkit/fileapi/file_system_operation.cc
+++ b/webkit/fileapi/file_system_operation.cc
@@ -71,7 +71,10 @@ FileSystemOperation::ScopedQuotaNotifier::~ScopedQuotaNotifier() {
}
}
-FileSystemOperation::TaskParamsForDidGetQuota::TaskParamsForDidGetQuota() {}
+FileSystemOperation::TaskParamsForDidGetQuota::TaskParamsForDidGetQuota()
+ : type(kFileSystemTypeUnknown) {
+}
+
FileSystemOperation::TaskParamsForDidGetQuota::~TaskParamsForDidGetQuota() {}
FileSystemOperation::~FileSystemOperation() {
« 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