mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-30 18:40:27 +01:00
script-surface: Fix unitialized variable compiler warning
gcc doesn't warn about this because status is potentially initialized in a loop.
This commit is contained in:
parent
bfa00bc3d7
commit
c4fd00c2c4
1 changed files with 1 additions and 1 deletions
|
|
@ -1839,7 +1839,7 @@ _emit_path_boxes (cairo_script_surface_t *surface,
|
|||
{
|
||||
cairo_script_context_t *ctx = to_context (surface);
|
||||
cairo_path_fixed_iter_t iter;
|
||||
cairo_status_t status;
|
||||
cairo_status_t status = CAIRO_STATUS_SUCCESS;
|
||||
struct _cairo_boxes_chunk *chunk;
|
||||
cairo_boxes_t boxes;
|
||||
cairo_box_t box;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue