summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-09 02:26:33 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-09 02:26:33 +0000
commit9068bf9370fd15f8127f8096297d1941d5d1bd59 (patch)
tree0d51f1ed3cd0bd4c026986624e3818f13b5dfea6
parenta91770f3685c42712320364b573a803e11dd4838 (diff)
downloadchromium_src-9068bf9370fd15f8127f8096297d1941d5d1bd59.zip
chromium_src-9068bf9370fd15f8127f8096297d1941d5d1bd59.tar.gz
chromium_src-9068bf9370fd15f8127f8096297d1941d5d1bd59.tar.bz2
Coverity: uninitialized member in posix WaitableEventWatcher constructor.
CID=9290 TEST=builds BUG=none Review URL: http://codereview.chromium.org/2954001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51917 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/waitable_event_watcher_posix.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/waitable_event_watcher_posix.cc b/base/waitable_event_watcher_posix.cc
index eca2cb3..07ae694 100644
--- a/base/waitable_event_watcher_posix.cc
+++ b/base/waitable_event_watcher_posix.cc
@@ -122,6 +122,7 @@ WaitableEventWatcher::WaitableEventWatcher()
: event_(NULL),
message_loop_(NULL),
cancel_flag_(NULL),
+ waiter_(NULL),
callback_task_(NULL),
delegate_(NULL) {
}