diff options
author | Mark H Weaver <mhw@netris.org> | 2015-01-30 02:37:44 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-01-30 10:54:41 -0500 |
commit | 582100a0c07a245abd1580e9caaf9896e0d0e67f (patch) | |
tree | b9291dec4d035f299461baa75c4852a25365c533 /gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch | |
parent | 686e025d79e9747adb96c1d328c799539a2ec8c3 (diff) | |
download | guix-582100a0c07a245abd1580e9caaf9896e0d0e67f.tar.gz |
gnu: icecat: Update to 31.4.0.
* gnu/packages/patches/icecat-CVE-2014-1587-bug-1042567.patch, gnu/packages/patches/icecat-CVE-2014-1587-bug-1072847.patch, gnu/packages/patches/icecat-CVE-2014-1587-bug-1079729.patch, gnu/packages/patches/icecat-CVE-2014-1587-bug-1080312.patch, gnu/packages/patches/icecat-CVE-2014-1587-bug-1089207.patch, gnu/packages/patches/icecat-CVE-2014-1590.patch, gnu/packages/patches/icecat-CVE-2014-1592.patch, gnu/packages/patches/icecat-CVE-2014-1593.patch, gnu/packages/patches/icecat-CVE-2014-1594.patch, gnu/packages/patches/icecat-CVE-2014-8634-pt1.patch, gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch, gnu/packages/patches/icecat-CVE-2014-8638-pt1.patch, gnu/packages/patches/icecat-CVE-2014-8638-pt2.patch, gnu/packages/patches/icecat-CVE-2014-8639.patch, gnu/packages/patches/icecat-CVE-2014-8641.patch, gnu/packages/patches/icecat-armhf-xpcom.patch: Remove files. * gnu-system.am (dist_patch_DATA): Remove them. * gnu/packages/gnuzilla.scm: Update to 31.4.0. Remove patches.
Diffstat (limited to 'gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch')
-rw-r--r-- | gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch b/gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch deleted file mode 100644 index d7f68e9df3..0000000000 --- a/gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch +++ /dev/null @@ -1,30 +0,0 @@ -From e5de31c8f927b1aa06dde02c356cda33beb463d9 Mon Sep 17 00:00:00 2001 -From: Kyle Huey <khuey@kylehuey.com> -Date: Fri, 19 Dec 2014 18:16:17 -0800 -Subject: [PATCH] Bug 1111737. r=smaug, a=bkerensa - ---- - content/base/src/nsScriptLoader.cpp | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/content/base/src/nsScriptLoader.cpp b/content/base/src/nsScriptLoader.cpp -index a6a4c34..7f3a76e 100644 ---- a/content/base/src/nsScriptLoader.cpp -+++ b/content/base/src/nsScriptLoader.cpp -@@ -812,7 +812,12 @@ NotifyOffThreadScriptLoadCompletedRunnable::Run() - { - MOZ_ASSERT(NS_IsMainThread()); - -- nsresult rv = mLoader->ProcessOffThreadRequest(mRequest, &mToken); -+ // We want these to be dropped on the main thread, once we return from this -+ // function. -+ nsRefPtr<nsScriptLoadRequest> request = mRequest.forget(); -+ nsRefPtr<nsScriptLoader> loader = mLoader.forget(); -+ -+ nsresult rv = loader->ProcessOffThreadRequest(request, &mToken); - - if (mToken) { - // The result of the off thread parse was not actually needed to process --- -2.1.2 - |