From 7d96da1e651a046e8f688da1aebf45e52aed9096 Mon Sep 17 00:00:00 2001 From: "U. Artie Eoff" Date: Fri, 10 Jan 2014 13:49:44 -0800 Subject: [PATCH] cursor: free theme->name too Signed-off-by: U. Artie Eoff --- cursor/wayland-cursor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cursor/wayland-cursor.c b/cursor/wayland-cursor.c index 3dadbdde..e41b00f5 100644 --- a/cursor/wayland-cursor.c +++ b/cursor/wayland-cursor.c @@ -413,6 +413,7 @@ wl_cursor_theme_destroy(struct wl_cursor_theme *theme) shm_pool_destroy(theme->pool); + free(theme->name); free(theme->cursors); free(theme); }