summarylogtreecommitdiffstats
path: root/icecat-CVE-2015-4488.patch
diff options
context:
space:
mode:
authorFigue2015-08-26 12:39:47 +0200
committerFigue2015-08-26 12:43:30 +0200
commit90388447f8c2e5ff1d433d9c08c87fa4423889d3 (patch)
tree9d07e4c82cc87a4a8ddb55fb8769d0a4d7c6dd54 /icecat-CVE-2015-4488.patch
parentb25900b4b69ac3adc870f9c2f4e67530c5eaad6d (diff)
downloadaur-90388447f8c2e5ff1d433d9c08c87fa4423889d3.tar.gz
Update to 31.8.0-gnu2. Applied patch for CVE-2015-4473 CVE-2015-4482 CVE-2015-4488 CVE-2015-4489 CVE-2015-4491 CVE-2015-4492 CVE-2015-4495 from Guix
Diffstat (limited to 'icecat-CVE-2015-4488.patch')
-rw-r--r--icecat-CVE-2015-4488.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/icecat-CVE-2015-4488.patch b/icecat-CVE-2015-4488.patch
new file mode 100644
index 000000000000..cee0905be08e
--- /dev/null
+++ b/icecat-CVE-2015-4488.patch
@@ -0,0 +1,21 @@
+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;