From c119c43b4838fc63273ac40ba7f29b412a62c2a4 Mon Sep 17 00:00:00 2001 From: emersion Date: Thu, 26 Apr 2018 15:59:58 +0100 Subject: [PATCH] xwayland/selection: fix little memory leak on error --- xwayland/selection/incoming.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xwayland/selection/incoming.c b/xwayland/selection/incoming.c index 1b596254..5deb2286 100644 --- a/xwayland/selection/incoming.c +++ b/xwayland/selection/incoming.c @@ -309,6 +309,7 @@ static bool source_get_targets(struct wlr_xwm_selection *selection, char **mime_type_ptr = wl_array_add(mime_types, sizeof(*mime_type_ptr)); if (mime_type_ptr == NULL) { + free(mime_type); break; } *mime_type_ptr = mime_type;