зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1208289 - Bustage fix. r=bustage
This commit is contained in:
Родитель
8ded475d58
Коммит
593512f49b
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче