mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 09:08:16 +02:00
cairo-path-fill - trivial missing unused result
Actually assign the result that is tested on the next line...
This commit is contained in:
parent
7ab1f62c60
commit
814830f63b
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ _cairo_filler_curve_to (void *closure,
|
|||
if (status == CAIRO_INT_STATUS_DEGENERATE)
|
||||
return CAIRO_STATUS_SUCCESS;
|
||||
|
||||
_cairo_spline_decompose (&spline, filler->tolerance);
|
||||
status = _cairo_spline_decompose (&spline, filler->tolerance);
|
||||
if (status)
|
||||
goto CLEANUP_SPLINE;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue