diff options
author | Colin Walters <walters@verbum.org> | 2011-05-05 16:11:02 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2011-05-11 14:15:48 -0400 |
commit | 65963748860aec8e3d7ee939b3b16876f4117904 (patch) | |
tree | 2f35d5f3920d03e63af402cc3353cf8984160b8c | |
parent | 7d70343c6dfcd09c8bd55de266d25aafb3588ac5 (diff) | |
download | mutter-65963748860aec8e3d7ee939b3b16876f4117904.tar.gz |
region-utils.c: Squash a memory leak
"chunk" was an allocated but unused variable.
https://bugzilla.gnome.org/show_bug.cgi?id=649504
-rw-r--r-- | src/compositor/region-utils.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/compositor/region-utils.c b/src/compositor/region-utils.c index b4071caaf..cf3c64ec7 100644 --- a/src/compositor/region-utils.c +++ b/src/compositor/region-utils.c @@ -248,7 +248,6 @@ expand_region_inverse (cairo_region_t *region, MetaRegionBuilder builder; MetaRegionIterator iter; cairo_rectangle_int_t extents; - cairo_region_t *chunk; int last_x; @@ -268,16 +267,11 @@ expand_region_inverse (cairo_region_t *region, extents.x, extents.y + extents.height, extents.width, 1, x_amount, y_amount, flip); - chunk = NULL; - last_x = extents.x; for (meta_region_iterator_init (&iter, region); !meta_region_iterator_at_end (&iter); meta_region_iterator_next (&iter)) { - if (chunk == NULL) - chunk = cairo_region_create (); - if (iter.rectangle.x > last_x) add_expanded_rect (&builder, last_x, iter.rectangle.y, |