Fix leak of pattern.

This commit is contained in:
Carl Worth 2005-07-18 08:23:21 +00:00
parent 751e059f5c
commit f0fae1d1bc
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-07-18 Carl Worth <cworth@cworth.org>
* test/composite-integer-translate-over-repeat.c (draw): Fix leak
of pattern.
2005-07-18 Carl Worth <cworth@cworth.org>
* ROADMAP: Note some progress.

View file

@ -50,6 +50,7 @@ draw (cairo_t *cr, int width, int height)
cairo_fill (cr);
cairo_surface_destroy (image);
cairo_pattern_destroy (pat);
return CAIRO_TEST_SUCCESS;
}