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

Unified Diff: webkit/fileapi/file_system_operation_context.cc

Issue 7215027: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 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
Index: webkit/fileapi/file_system_operation_context.cc
diff --git a/webkit/fileapi/file_system_operation_context.cc b/webkit/fileapi/file_system_operation_context.cc
index 777409cc970478d9e5cfab9d32d84d0e8aabf4f5..d7bfbbba585dc1e33572d3fe609872f2fb153737 100644
--- a/webkit/fileapi/file_system_operation_context.cc
+++ b/webkit/fileapi/file_system_operation_context.cc
@@ -16,7 +16,8 @@ FileSystemOperationContext::FileSystemOperationContext(
src_file_system_file_util_(file_system_file_util),
dest_file_system_file_util_(file_system_file_util),
src_type_(kFileSystemTypeUnknown),
- dest_type_(kFileSystemTypeUnknown) {
+ dest_type_(kFileSystemTypeUnknown),
+ allowed_bytes_growth_(0) {
}
FileSystemOperationContext::~FileSystemOperationContext() {

Powered by Google App Engine
This is Rietveld 408576698