summaryrefslogtreecommitdiffstats
path: root/base/message_loop.cc
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-11 20:06:02 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-11 20:06:02 +0000
commit404ec5e6b31eb14d1b53d40b3c7129d737850070 (patch)
tree80f4ee8ded3094a9d85637e6a5b21effe8372521 /base/message_loop.cc
parent8df21d319819440a0f196d5274d82cd3bea53de3 (diff)
downloadchromium_src-404ec5e6b31eb14d1b53d40b3c7129d737850070.zip
chromium_src-404ec5e6b31eb14d1b53d40b3c7129d737850070.tar.gz
chromium_src-404ec5e6b31eb14d1b53d40b3c7129d737850070.tar.bz2
(purify bustage) Correct purify (only) reference to variable
tbr=erikkay Review URL: http://codereview.chromium.org/43097 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11476 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_loop.cc')
-rw-r--r--base/message_loop.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/message_loop.cc b/base/message_loop.cc
index fef99e2..b4ad2bc 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -367,7 +367,7 @@ bool MessageLoop::DeletePendingTasks() {
// TODO(darin): Delete all tasks once it is safe to do so.
// Until it is totally safe, just do it when running purify.
#ifdef PURIFY
- delete task;
+ delete pending_task.task;
#endif // PURIFY
}
}