mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 18:08:03 +02:00
[script] Fix use of freed list
A typo, I missed converting the user over to the freshly sorted list, leaving it iterating over original but checking the sorted for termination conditions.
This commit is contained in:
parent
5393aa6d6c
commit
155e10e632
1 changed files with 1 additions and 1 deletions
|
|
@ -2003,7 +2003,7 @@ inactive (cairo_script_surface_t *surface)
|
|||
cairo_list_t *operand;
|
||||
int depth;
|
||||
|
||||
df = cairo_list_first_entry (&ctx->deferred,
|
||||
df = cairo_list_first_entry (&sorted,
|
||||
struct deferred_finish,
|
||||
link);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue