From 2755847fce68d6ad36e180f807d06e8a6e70bce7 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 3 Jan 2012 16:32:40 +0200 Subject: [PATCH] server: add wl_input_device_release() Add a clean-up function for destroying all objects created in wl_input_device_init(). Can be used to fix memory leaks reported by Valgrind in the demos. The init function was also missing an explicit initialisation of the 'keys' array. Add the explicit array init, although it is redundant with the zeroing of the whole struct. Signed-off-by: Pekka Paalanen krh: Edited to rename function to *_release() --- src/wayland-server.c | 15 +++++++++++++++ src/wayland-server.h | 3 +++ 2 files changed, 18 insertions(+) diff --git a/src/wayland-server.c b/src/wayland-server.c index 89e8a81..54a684c 100644 --- a/src/wayland-server.c +++ b/src/wayland-server.c @@ -411,6 +411,7 @@ wl_input_device_init(struct wl_input_device *device) { memset(device, 0, sizeof *device); wl_list_init(&device->resource_list); + wl_array_init(&device->keys); device->pointer_focus_listener.func = lose_pointer_focus; device->keyboard_focus_listener.func = lose_keyboard_focus; @@ -418,6 +419,20 @@ wl_input_device_init(struct wl_input_device *device) device->y = 100; } +WL_EXPORT void +wl_input_device_release(struct wl_input_device *device) +{ + if (device->keyboard_focus_resource) + wl_list_remove(&device->keyboard_focus_listener.link); + + if (device->pointer_focus_resource) + wl_list_remove(&device->pointer_focus_listener.link); + + /* XXX: What about device->resource_list? */ + + wl_array_release(&device->keys); +} + static struct wl_resource * find_resource_for_surface(struct wl_list *list, struct wl_surface *surface) { diff --git a/src/wayland-server.h b/src/wayland-server.h index 5176a09..968c654 100644 --- a/src/wayland-server.h +++ b/src/wayland-server.h @@ -223,6 +223,9 @@ void wl_input_device_init(struct wl_input_device *device); void +wl_input_device_release(struct wl_input_device *device); + +void wl_input_device_set_pointer_focus(struct wl_input_device *device, struct wl_surface *surface, uint32_t time, -- 2.7.4