(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


CrOS-Libchrome-Original-Commit: 404ec5e6b31eb14d1b53d40b3c7129d737850070
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 @@
       // 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
     }
   }