mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
xwayland/selection: fix little memory leak on error
This commit is contained in:
parent
874909dca6
commit
c119c43b48
1 changed files with 1 additions and 0 deletions
|
@ -309,6 +309,7 @@ static bool source_get_targets(struct wlr_xwm_selection *selection,
|
||||||
char **mime_type_ptr =
|
char **mime_type_ptr =
|
||||||
wl_array_add(mime_types, sizeof(*mime_type_ptr));
|
wl_array_add(mime_types, sizeof(*mime_type_ptr));
|
||||||
if (mime_type_ptr == NULL) {
|
if (mime_type_ptr == NULL) {
|
||||||
|
free(mime_type);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
*mime_type_ptr = mime_type;
|
*mime_type_ptr = mime_type;
|
||||||
|
|
Loading…
Reference in a new issue