mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Merge pull request #1415 from emersion/tablet-seat-leak
tablet-v2: fix wlr_tablet_seat_v2 leak
This commit is contained in:
		
						commit
						fdb67ff63b
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
					@ -28,13 +28,14 @@ struct wlr_tablet_manager_client_v2 {
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void tablet_seat_destroy(struct wlr_tablet_seat_v2 *seat) {
 | 
					static void tablet_seat_destroy(struct wlr_tablet_seat_v2 *seat) {
 | 
				
			||||||
	wl_list_remove(&seat->link);
 | 
					 | 
				
			||||||
	wl_list_remove(&seat->seat_destroy.link);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	struct wlr_tablet_seat_client_v2 *client, *client_tmp;
 | 
						struct wlr_tablet_seat_client_v2 *client, *client_tmp;
 | 
				
			||||||
	wl_list_for_each_safe(client, client_tmp, &seat->clients, seat_link) {
 | 
						wl_list_for_each_safe(client, client_tmp, &seat->clients, seat_link) {
 | 
				
			||||||
		tablet_seat_client_v2_destroy(client->resource);
 | 
							tablet_seat_client_v2_destroy(client->resource);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						wl_list_remove(&seat->link);
 | 
				
			||||||
 | 
						wl_list_remove(&seat->seat_destroy.link);
 | 
				
			||||||
 | 
						free(seat);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void handle_wlr_seat_destroy(struct wl_listener *listener, void *data) {
 | 
					static void handle_wlr_seat_destroy(struct wl_listener *listener, void *data) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue