aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/icecat-CVE-2015-0797.patch
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2015-06-05 23:15:25 -0400
committerMark H Weaver <mhw@netris.org>2015-06-06 08:02:45 -0400
commit716e20a2bccbbff71ff1839de2d9f97e7efd5a5f (patch)
treea777888d51c92ab6c0f5fd15e4d7b5ca3ea9116c /gnu/packages/patches/icecat-CVE-2015-0797.patch
parent8850303e769a742f407193e08388692cfcd09e67 (diff)
downloadguix-716e20a2bccbbff71ff1839de2d9f97e7efd5a5f.tar
guix-716e20a2bccbbff71ff1839de2d9f97e7efd5a5f.tar.gz
gnu: icecat: Update to 31.7.0-gnu1.
* gnu/packages/patches/icecat-CVE-2015-0797.patch, gnu/packages/patches/icecat-CVE-2015-2708-pt1.patch, gnu/packages/patches/icecat-CVE-2015-2708-pt2.patch, gnu/packages/patches/icecat-CVE-2015-2708-pt3.patch, gnu/packages/patches/icecat-CVE-2015-2708-pt4.patch, gnu/packages/patches/icecat-CVE-2015-2710-pt1.patch, gnu/packages/patches/icecat-CVE-2015-2710-pt2.patch, gnu/packages/patches/icecat-CVE-2015-2710-pt3.patch, gnu/packages/patches/icecat-CVE-2015-2713-pt1.patch, gnu/packages/patches/icecat-CVE-2015-2713-pt2.patch, gnu/packages/patches/icecat-CVE-2015-2716.patch: Remove files. * gnu-system.am (dist_patch_DATA): Remove them. * gnu/packages/gnuzilla.scm (icecat): Update to 31.7.0-gnu1. Remove patches.
Diffstat (limited to 'gnu/packages/patches/icecat-CVE-2015-0797.patch')
-rw-r--r--gnu/packages/patches/icecat-CVE-2015-0797.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/gnu/packages/patches/icecat-CVE-2015-0797.patch b/gnu/packages/patches/icecat-CVE-2015-0797.patch
deleted file mode 100644
index 5727ed753c..0000000000
--- a/gnu/packages/patches/icecat-CVE-2015-0797.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 147543038273042f71284fa8487c71670163da5f Mon Sep 17 00:00:00 2001
-From: Ralph Giles <giles@mozilla.com>
-Date: Tue, 31 Mar 2015 16:18:22 -0700
-Subject: [PATCH] Bug 1080995 - Don't use the h264parser gstreamer element.
- r=kinetik, a=sledru
-
----
- content/media/gstreamer/GStreamerFormatHelper.cpp | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/content/media/gstreamer/GStreamerFormatHelper.cpp b/content/media/gstreamer/GStreamerFormatHelper.cpp
-index 25095e7..ebd12c2 100644
---- a/content/media/gstreamer/GStreamerFormatHelper.cpp
-+++ b/content/media/gstreamer/GStreamerFormatHelper.cpp
-@@ -67,6 +67,7 @@ static char const * const sDefaultCodecCaps[][2] = {
-
- static char const * const sPluginBlacklist[] = {
- "flump3dec",
-+ "h264parse",
- };
-
- GStreamerFormatHelper::GStreamerFormatHelper()
-@@ -251,7 +252,8 @@ static gboolean FactoryFilter(GstPluginFeature *aFeature, gpointer)
- const gchar *className =
- gst_element_factory_get_klass(GST_ELEMENT_FACTORY_CAST(aFeature));
-
-- if (!strstr(className, "Decoder") && !strstr(className, "Demux")) {
-+ if (!strstr(className, "Decoder") && !strstr(className, "Demux") &&
-+ !strstr(className, "Parser")) {
- return FALSE;
- }
-
---
-2.2.1
-