From 624db2f135cb91af1331aee85a866059a2ee8816 Mon Sep 17 00:00:00 2001 From: "peterv@propagandism.org" Date: Thu, 24 Jan 2008 07:18:14 -0800 Subject: [PATCH] Fix for bug 413281 (Firefox leaks when Yahoo Toolbar is installed). r=stuart, sr=sicking. --- xpcom/threads/TimerThread.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xpcom/threads/TimerThread.cpp b/xpcom/threads/TimerThread.cpp index 4e90a5a7280e..63a2cc73c320 100644 --- a/xpcom/threads/TimerThread.cpp +++ b/xpcom/threads/TimerThread.cpp @@ -166,6 +166,7 @@ nsresult TimerThread::Shutdown() nsTimerImpl *timer; for (PRInt32 i = mTimers.Count() - 1; i >= 0; i--) { timer = static_cast(mTimers[i]); + timer->ReleaseCallback(); RemoveTimerInternal(timer); } }