summaryrefslogtreecommitdiff
path: root/data/patches/icecat-CVE-2015-4488.patch
diff options
context:
space:
mode:
authorRuben Rodriguez <ruben@gnu.org>2015-10-23 23:06:22 -0500
committerRuben Rodriguez <ruben@gnu.org>2015-10-23 23:06:22 -0500
commitc646efc9689bec66cea027b5f67a4bc22a4604cb (patch)
tree3891661f1160d2de72b43395d8a375787355999b /data/patches/icecat-CVE-2015-4488.patch
parent3e8a55f62612c5cb746ad8a6d7000789f671c594 (diff)
Deleted extra patch files left in rebase
Diffstat (limited to 'data/patches/icecat-CVE-2015-4488.patch')
-rw-r--r--data/patches/icecat-CVE-2015-4488.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/data/patches/icecat-CVE-2015-4488.patch b/data/patches/icecat-CVE-2015-4488.patch
deleted file mode 100644
index cee0905..0000000
--- a/data/patches/icecat-CVE-2015-4488.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Backported to icecat-31.8 from the upstream esr38 branch.
-
-From 103fb14ff54753305508448ba0e374247a463552 Mon Sep 17 00:00:00 2001
-From: Daniel Holbert <dholbert@cs.stanford.edu>
-Date: Fri, 19 Jun 2015 15:56:12 -0700
-Subject: [PATCH] Bug 1176270 - Handle self-assignment in
- StyleAnimationValue::operator=. r=dbaron, a=sledru
-
---- icecat-31.8.0/layout/style/nsStyleAnimation.cpp.orig 1969-12-31 19:00:00.000000000 -0500
-+++ icecat-31.8.0/layout/style/nsStyleAnimation.cpp 2015-08-12 16:00:39.418122049 -0400
-@@ -3517,6 +3517,10 @@
- nsStyleAnimation::Value&
- nsStyleAnimation::Value::operator=(const Value& aOther)
- {
-+ if (this == &aOther) {
-+ return *this;
-+ }
-+
- FreeValue();
-
- mUnit = aOther.mUnit;