summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/icecat-CVE-2015-2710-pt3.patch
diff options
context:
space:
mode:
authorMark H Weaver <[email protected]>2015-06-05 23:15:25 -0400
committerMark H Weaver <[email protected]>2015-06-06 08:02:45 -0400
commit716e20a2bccbbff71ff1839de2d9f97e7efd5a5f (patch)
treea777888d51c92ab6c0f5fd15e4d7b5ca3ea9116c /gnu/packages/patches/icecat-CVE-2015-2710-pt3.patch
parent8850303e769a742f407193e08388692cfcd09e67 (diff)
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-2710-pt3.patch')
-rw-r--r--gnu/packages/patches/icecat-CVE-2015-2710-pt3.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/gnu/packages/patches/icecat-CVE-2015-2710-pt3.patch b/gnu/packages/patches/icecat-CVE-2015-2710-pt3.patch
deleted file mode 100644
index 6759506213..0000000000
--- a/gnu/packages/patches/icecat-CVE-2015-2710-pt3.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 2cda46e6158a459b56b392c8e389b055fdf740ca Mon Sep 17 00:00:00 2001
-From: Ryan VanderMeulen <[email protected]>
-Date: Mon, 6 Apr 2015 22:59:41 -0400
-Subject: [PATCH] Bug 1149542 - Replace MOZ_ASSERT_UNREACHABLE with MOZ_ASSERT.
- r=dholbert, a=bustage
-
----
- layout/svg/SVGTextFrame.cpp | 12 ++++++------
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/layout/svg/SVGTextFrame.cpp b/layout/svg/SVGTextFrame.cpp
-index 9d331b8..e7b7275 100644
---- a/layout/svg/SVGTextFrame.cpp
-+++ b/layout/svg/SVGTextFrame.cpp
-@@ -4333,8 +4333,8 @@ SVGTextFrame::ResolvePositionsForNode(nsIContent* aContent,
- if (length) {
- uint32_t end = aIndex + length;
- if (MOZ_UNLIKELY(end > mPositions.Length())) {
-- MOZ_ASSERT_UNREACHABLE("length of mPositions does not match characters "
-- "found by iterating content");
-+ MOZ_ASSERT(false, "length of mPositions does not match characters "
-+ "found by iterating content");
- return false;
- }
- if (aForceStartOfChunk) {
-@@ -4367,8 +4367,8 @@ SVGTextFrame::ResolvePositionsForNode(nsIContent* aContent,
- // only if they actually have some text content.
- if (HasTextContent(aContent)) {
- if (MOZ_UNLIKELY(aIndex >= mPositions.Length())) {
-- MOZ_ASSERT_UNREACHABLE("length of mPositions does not match characters "
-- "found by iterating content");
-+ MOZ_ASSERT(false, "length of mPositions does not match characters "
-+ "found by iterating content");
- return false;
- }
- mPositions[aIndex].mPosition = gfxPoint();
-@@ -4394,8 +4394,8 @@ SVGTextFrame::ResolvePositionsForNode(nsIContent* aContent,
- uint32_t count = GetTextContentLength(aContent);
-
- if (MOZ_UNLIKELY(aIndex + count > mPositions.Length())) {
-- MOZ_ASSERT_UNREACHABLE("length of mPositions does not match characters "
-- "found by iterating content");
-+ MOZ_ASSERT(false, "length of mPositions does not match characters "
-+ "found by iterating content");
- return false;
- }
-
---
-2.2.1
-