From 4d18722d200805d5e56e8cd1dcfac61451f4f4f0 Mon Sep 17 00:00:00 2001 From: Ruben Rodriguez Date: Sat, 22 Aug 2015 16:42:16 -0500 Subject: 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 --- data/patches/icecat-CVE-2015-4488.patch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 data/patches/icecat-CVE-2015-4488.patch (limited to 'data/patches/icecat-CVE-2015-4488.patch') diff --git a/data/patches/icecat-CVE-2015-4488.patch b/data/patches/icecat-CVE-2015-4488.patch new file mode 100644 index 0000000..cee0905 --- /dev/null +++ b/data/patches/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 +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; -- cgit v1.2.3