server: add wl_input_device_release()
authorPekka Paalanen <ppaalanen@gmail.com>
Tue, 3 Jan 2012 14:32:40 +0000 (16:32 +0200)
committerKristian Høgsberg <krh@bitplanet.net>
Tue, 3 Jan 2012 16:22:58 +0000 (11:22 -0500)
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 <ppaalanen@gmail.com>
krh: Edited to rename function to *_release()

src/wayland-server.c
src/wayland-server.h

index 89e8a81..54a684c 100644 (file)
@@ -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)
 {
index 5176a09..968c654 100644 (file)
@@ -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,