Merge pull request #121 from martinetd/wlr_seat_destroy

wlr_seat: fix destroy with multiple handles
This commit is contained in:
Drew DeVault 2017-08-22 13:47:41 -05:00 committed by GitHub
commit a138657598
1 changed files with 2 additions and 2 deletions

View File

@ -180,8 +180,8 @@ void wlr_seat_destroy(struct wlr_seat *wlr_seat) {
return;
}
struct wlr_seat_handle *handle;
wl_list_for_each(handle, &wlr_seat->handles, link) {
struct wlr_seat_handle *handle, *tmp;
wl_list_for_each_safe(handle, tmp, &wlr_seat->handles, link) {
wl_resource_destroy(handle->wl_resource); // will destroy other resources as well
}