Bug 1208289 - Bustage fix. r=bustage

This commit is contained in:
Chris Pearce 2015-09-28 14:21:21 +13:00
Родитель 8ded475d58
Коммит 593512f49b
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -373,9 +373,10 @@ void
SimpleTimer::Cancel() {
if (mTimer) {
#ifdef DEBUG
nsCOMPtr<nsIThread> target;
nsCOMPtr<nsIEventTarget> target;
mTimer->GetTarget(getter_AddRefs(target));
MOZ_ASSERT(NS_GetCurrentThread() == target);
nsCOMPtr<nsIThread> thread(do_QueryInterface(target));
MOZ_ASSERT(NS_GetCurrentThread() == thread);
#endif
mTimer->Cancel();
mTimer = nullptr;