From 6ad7a303ef2ff130b84cfa718ace423a3101dbbb Mon Sep 17 00:00:00 2001 From: adnano Date: Sun, 17 Mar 2024 07:01:23 -0400 Subject: Don't destroy wl_data_offer twice The data offer is destroyed after it is used. There is no need to destroy it again. This also fixes an issue where calling wl_data_offer_destroy with a NULL data offer would segfault. --- menu.c | 1 - 1 file changed, 1 deletion(-) diff --git a/menu.c b/menu.c index 0acfcab..f48a8f0 100644 --- a/menu.c +++ b/menu.c @@ -740,7 +740,6 @@ void menu_destroy(struct menu *menu) { wl_data_device_destroy(menu->data_device); wl_surface_destroy(menu->surface); zwlr_layer_surface_v1_destroy(menu->layer_surface); - wl_data_offer_destroy(menu->data_offer); free_pages(menu); free_items(menu); -- cgit v1.2.3