wayland: Fixes a memory leak wheere primary selection isn't freed

main
Linus Probert 2023-04-24 20:48:42 +02:00 committed by Sam Lantinga
parent ae9119c36b
commit 43f65a6ef0
1 changed files with 7 additions and 0 deletions

View File

@ -2724,6 +2724,13 @@ void Wayland_display_destroy_input(SDL_VideoData *d)
SDL_free(input->data_device); SDL_free(input->data_device);
} }
if (input->primary_selection_device != NULL) {
if (input->primary_selection_device->selection_offer != NULL) {
Wayland_primary_selection_offer_destroy(input->primary_selection_device->selection_offer);
}
SDL_free(input->primary_selection_device);
}
if (input->text_input != NULL) { if (input->text_input != NULL) {
zwp_text_input_v3_destroy(input->text_input->text_input); zwp_text_input_v3_destroy(input->text_input->text_input);
SDL_free(input->text_input); SDL_free(input->text_input);