summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1400554
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2017-11-14 19:04:44 +0000
committerJan Beich <jbeich@FreeBSD.org>2017-11-14 19:04:44 +0000
commiteb864e519d068c6f12ec6f12461bcb05887b6ce6 (patch)
treed0bbc8aaad1216e11badc746f6c83eaf42ec88cf /www/firefox/files/patch-bug1400554
parentsecurity/vuxml: mark firefox < 57 as vulnerable (diff)
www/firefox: update to 57.0 (marketed as "Firefox Quantum")
Not a MFH candidate due to POLA violation per redesigned UI, broken legacy addons and auto-reviewed new addons. Changes: https://www.mozilla.org/firefox/57.0/releasenotes/ PR: 222693 Tested by: pi, tobik, TrueOS
Notes
Notes: svn path=/head/; revision=454194
Diffstat (limited to '')
-rw-r--r--www/firefox/files/patch-bug140055427
1 files changed, 0 insertions, 27 deletions
diff --git a/www/firefox/files/patch-bug1400554 b/www/firefox/files/patch-bug1400554
deleted file mode 100644
index b8ed7dec089a..000000000000
--- a/www/firefox/files/patch-bug1400554
+++ /dev/null
@@ -1,27 +0,0 @@
-commit 62b41b600acc
-Author: Dragana Damjanovic <dd.mozilla@gmail.com>
-Date: Mon Oct 9 14:59:32 2017 -0400
-
- Bug 1400554 - Cancel a time in TLSFilterTransaction if transaction is canceled. r=mcmanus, a=ritu
-
- --HG--
- extra : source : 67315954145e9cae0efe8c5323452a70a13c5484
----
- netwerk/protocol/http/TunnelUtils.cpp | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git netwerk/protocol/http/TunnelUtils.cpp netwerk/protocol/http/TunnelUtils.cpp
-index d0f6ef0b1873..0cf3ea4f3008 100644
---- netwerk/protocol/http/TunnelUtils.cpp
-+++ netwerk/protocol/http/TunnelUtils.cpp
-@@ -126,6 +126,10 @@ TLSFilterTransaction::Close(nsresult aReason)
- return;
- }
-
-+ if (mTimer) {
-+ mTimer->Cancel();
-+ mTimer = nullptr;
-+ }
- mTransaction->Close(aReason);
- mTransaction = nullptr;
- }