summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_file_util_proxy.cc
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-21 21:24:19 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-21 21:24:19 +0000
commit0e14e87dac939b7d26f042250e93fe32883ae087 (patch)
treeb8677c0bd55522bbf3a621533af1c9476aad4c4c /webkit/fileapi/file_system_file_util_proxy.cc
parent330b21429e0c95861ee31fbae3bd6a17f364eb36 (diff)
downloadchromium_src-0e14e87dac939b7d26f042250e93fe32883ae087.zip
chromium_src-0e14e87dac939b7d26f042250e93fe32883ae087.tar.gz
chromium_src-0e14e87dac939b7d26f042250e93fe32883ae087.tar.bz2
Coverity: Initialize member variables.
CID=9299,13805,14203,14284,14459,15435,15897,16023,16614,16773,16819,16820, 16908,16916 BUG=none TEST=none R=kmadhusu@chromium.org Review URL: http://codereview.chromium.org/7215027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_file_util_proxy.cc')
-rw-r--r--webkit/fileapi/file_system_file_util_proxy.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/fileapi/file_system_file_util_proxy.cc b/webkit/fileapi/file_system_file_util_proxy.cc
index 9dae878..dd86595 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,