summaryrefslogtreecommitdiffstats
path: root/video/out
diff options
context:
space:
mode:
authordudemanguy <random342@airmail.cc>2019-05-13 08:47:13 -0500
committersfan5 <sfan5@live.de>2019-05-21 22:41:22 +0200
commit6e4971f69738056376e0a0c22fb59bb32a0092f9 (patch)
treeedc6d66c28736c81d0d27595ca056fe90279200c /video/out
parent64cdc3694e19fb3a51565c311ac82e92f90a62a9 (diff)
downloadmpv-6e4971f69738056376e0a0c22fb59bb32a0092f9.tar.bz2
mpv-6e4971f69738056376e0a0c22fb59bb32a0092f9.tar.xz
wayland: fix various memory leaks
Diffstat (limited to 'video/out')
-rw-r--r--video/out/wayland_common.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index a929c2619e..78c44328ea 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -1063,6 +1063,9 @@ void vo_wayland_uninit(struct vo *vo)
mp_input_put_key(wl->vo->input_ctx, MP_INPUT_RELEASE_ALL);
+ if (wl->current_output->output)
+ wl_output_destroy(wl->current_output->output);
+
if (wl->cursor_theme)
wl_cursor_theme_destroy(wl->cursor_theme);
@@ -1072,6 +1075,12 @@ void vo_wayland_uninit(struct vo *vo)
if (wl->xkb_context)
xkb_context_unref(wl->xkb_context);
+ if (wl->xkb_state)
+ xkb_state_unref(wl->xkb_state);
+
+ if (wl->xkb_keymap)
+ xkb_keymap_unref(wl->xkb_keymap);
+
if (wl->idle_inhibitor)
zwp_idle_inhibitor_v1_destroy(wl->idle_inhibitor);
@@ -1084,6 +1093,9 @@ void vo_wayland_uninit(struct vo *vo)
if (wl->shm)
wl_shm_destroy(wl->shm);
+ if (wl->dnd_ddev)
+ wl_data_device_destroy(wl->dnd_ddev);
+
if (wl->dnd_devman)
wl_data_device_manager_destroy(wl->dnd_devman);
@@ -1093,12 +1105,33 @@ void vo_wayland_uninit(struct vo *vo)
if (wl->xdg_decoration_manager)
zxdg_decoration_manager_v1_destroy(wl->xdg_decoration_manager);
+ if (wl->xdg_toplevel)
+ xdg_toplevel_destroy(wl->xdg_toplevel);
+
+ if (wl->xdg_surface)
+ xdg_surface_destroy(wl->xdg_surface);
+
+ if (wl->compositor)
+ wl_compositor_destroy(wl->compositor);
+
if (wl->surface)
wl_surface_destroy(wl->surface);
if (wl->frame_callback)
wl_callback_destroy(wl->frame_callback);
+ if (wl->pointer)
+ wl_pointer_destroy(wl->pointer);
+
+ if (wl->keyboard)
+ wl_keyboard_destroy(wl->keyboard);
+
+ if (wl->seat)
+ wl_seat_destroy(wl->seat);
+
+ if (wl->registry)
+ wl_registry_destroy(wl->registry);
+
if (wl->display) {
close(wl_display_get_fd(wl->display));
wl_display_disconnect(wl->display);