From fb4b5a293abf02b86f3521f71e6291abad2d1401 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 21 Jun 2011 10:44:37 +0200 Subject: [PATCH] compositor: Do not leak old client buffers --- compositor/compositor.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compositor/compositor.c b/compositor/compositor.c index 255dd5f..bb4d56d 100644 --- a/compositor/compositor.c +++ b/compositor/compositor.c @@ -282,6 +282,8 @@ wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface) wl_list_remove(&es->buffer_link); wl_list_insert(surfaces_attached_to, &es->buffer_link); } else { + if (es->image != EGL_NO_IMAGE_KHR) + ec->destroy_image(ec->display, es->image); es->image = ec->create_image(ec->display, NULL, EGL_WAYLAND_BUFFER_WL, buffer, NULL); -- 2.7.4