diff options
-rw-r--r-- | base/message_loop.cc | 2 |
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 } } |