mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
[cairo] Fix infinite loop in sweep-gradient code
Tested with U+F1314 from var font from: https://github.com/googlefonts/color-fonts/blob/main/glyph_descriptions.md
This commit is contained in:
parent
2c11c9db52
commit
43e82682c5
1 changed files with 3 additions and 0 deletions
|
@ -726,6 +726,9 @@ _hb_cairo_add_sweep_gradient_patches (hb_color_stop_t *stops,
|
|||
float span;
|
||||
|
||||
span = angles[n_stops - 1] - angles[0];
|
||||
if (!span)
|
||||
goto done;
|
||||
|
||||
k = 0;
|
||||
if (angles[0] >= 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue