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

Unified Diff: webkit/fileapi/file_system_file_util_proxy.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_file_util_proxy.cc
diff --git a/webkit/fileapi/file_system_file_util_proxy.cc b/webkit/fileapi/file_system_file_util_proxy.cc
index 9dae878cfad39a1e2b4d7b43fa0a0c2dcc1ab924..dd8659585e01d2f28588b037d9fc8b522001845e 100644
--- a/webkit/fileapi/file_system_file_util_proxy.cc
+++ b/webkit/fileapi/file_system_file_util_proxy.cc
@@ -20,7 +20,8 @@ class MessageLoopRelay
: origin_message_loop_proxy_(
base::MessageLoopProxy::CreateForCurrentThread()),
error_code_(base::PLATFORM_FILE_OK),
- context_(context) {
+ context_(context),
+ file_system_file_util_(NULL) {
}
bool Start(scoped_refptr<base::MessageLoopProxy> message_loop_proxy,

Powered by Google App Engine
This is Rietveld 408576698