summarylogtreecommitdiffstats
path: root/cairo-webkit-html5-fix.patch
diff options
context:
space:
mode:
authorDobroslaw Kijowski2016-04-14 17:50:15 +0200
committerDobroslaw Kijowski2016-04-14 17:50:15 +0200
commit10324c29e1c67eb18398d579891f9598aee93397 (patch)
tree9eb1234c3e212b4e825dd879dbe3503bb00c6396 /cairo-webkit-html5-fix.patch
parente4088bb3bee27a2dc8dcc42ed0308cb5a45c7e57 (diff)
downloadaur-10324c29e1c67eb18398d579891f9598aee93397.tar.gz
* Upgrade to 1.14.6.
* Download patches directly from github.
Diffstat (limited to 'cairo-webkit-html5-fix.patch')
-rw-r--r--cairo-webkit-html5-fix.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/cairo-webkit-html5-fix.patch b/cairo-webkit-html5-fix.patch
deleted file mode 100644
index e56bbc922300..000000000000
--- a/cairo-webkit-html5-fix.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 0742b90a214b35951414558f6f5579f79b8a8194 Mon Sep 17 00:00:00 2001
-From: Massimo Valentini <mvalentini@src.gnome.org>
-Date: Thu, 21 Aug 2014 17:15:51 +0200
-Subject: [PATCH] Fix segfault rendering videos in webkit based browsers
-
-do not tessellate empty boxes.
-
-Reported-by: Henrique Lengler <henriqueleng@openmailbox.org>
-Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=81699
----
- src/cairo-bentley-ottmann-rectangular.c | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/src/cairo-bentley-ottmann-rectangular.c b/src/cairo-bentley-ottmann-rectangular.c
-index 5541bdc..4bcd8d1 100644
---- a/src/cairo-bentley-ottmann-rectangular.c
-+++ b/src/cairo-bentley-ottmann-rectangular.c
-@@ -823,6 +823,9 @@ _cairo_bentley_ottmann_tessellate_boxes (const cairo_boxes_t *in,
- for (i = 0; i < chunk->count; i++) {
- int h;
-
-+ if (box[i].p1.y == box[i].p2.y)
-+ continue;
-+
- if (box[i].p1.x < box[i].p2.x) {
- rectangles[j].left.x = box[i].p1.x;
- rectangles[j].left.dir = 1;
---
-1.9.3
-