diff options
author | adnano <me@adnano.co> | 2024-03-17 07:01:23 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-03-17 07:01:23 -0400 |
commit | 6ad7a303ef2ff130b84cfa718ace423a3101dbbb (patch) | |
tree | 740a3f04b95d961414a7392f9e1bd41c32f0259b | |
parent | 4e151795bf8f15e38999a42cb71ddc63423ffe12 (diff) | |
download | wmenu-6ad7a303ef2ff130b84cfa718ace423a3101dbbb.tar.gz |
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.
-rw-r--r-- | menu.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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); |