[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:
Chris Wilson 2009-08-29 08:04:33 +01:00
parent 5393aa6d6c
commit 155e10e632

View file

@ -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);