From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- gfx/cairo/zero-subpath-bounds.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 gfx/cairo/zero-subpath-bounds.patch (limited to 'gfx/cairo/zero-subpath-bounds.patch') 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; + } + -- cgit v1.2.3