summaryrefslogtreecommitdiffstats
path: root/gfx/cairo/zero-subpath-bounds.patch
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/cairo/zero-subpath-bounds.patch')
-rw-r--r--gfx/cairo/zero-subpath-bounds.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/gfx/cairo/zero-subpath-bounds.patch b/gfx/cairo/zero-subpath-bounds.patch
new file mode 100644
index 0000000000..7ebad7e52c
--- /dev/null
+++ b/gfx/cairo/zero-subpath-bounds.patch
@@ -0,0 +1,17 @@
+diff --git a/gfx/cairo/cairo/src/cairo-path-bounds.c b/gfx/cairo/cairo/src/cairo-path-bounds.c
+--- a/gfx/cairo/cairo/src/cairo-path-bounds.c
++++ b/gfx/cairo/cairo/src/cairo-path-bounds.c
+@@ -139,6 +139,13 @@ static cairo_status_t
+ static cairo_status_t
+ _cairo_path_bounder_close_path (void *closure)
+ {
++ cairo_path_bounder_t *bounder = closure;
++
++ if (bounder->has_initial_point) {
++ _cairo_path_bounder_add_point (bounder, &bounder->current_point);
++ bounder->has_initial_point = FALSE;
++ }
++
+ return CAIRO_STATUS_SUCCESS;
+ }
+