Bug 1400554 - Cancel a time in TLSFilterTransaction if transaction is canceled. r=mcmanus

--HG--
extra : amend_source : f5ede6ac54301e636e122bf6e2dc98057633b436
This commit is contained in:
Dragana Damjanovic 2017-10-09 14:59:32 -04:00
Родитель 591c9f864b
Коммит 262c361ad5
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -126,6 +126,10 @@ TLSFilterTransaction::Close(nsresult aReason)
return;
}
if (mTimer) {
mTimer->Cancel();
mTimer = nullptr;
}
mTransaction->Close(aReason);
mTransaction = nullptr;
}