diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-09-10 21:11:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 21:11:32 -0400 |
commit | 76ad4804bce89ae28391873441e3b486d36a31c0 (patch) | |
tree | 4041b2c17f8037b1865c1c870f7c8b297f2969d9 /rootston | |
parent | 7ba50469e01ae54a07ea3674060f1566a76c907a (diff) | |
parent | 62af1c630a8238a5a1ea8872b5d24e16598f40c8 (diff) |
Merge pull request #1227 from emersion/rootston-segfault-tablet-destroy
rootston: fix segfault on tablet pad destroy
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/seat.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rootston/seat.c b/rootston/seat.c index c11ff017..a8e418ca 100644 --- a/rootston/seat.c +++ b/rootston/seat.c @@ -745,6 +745,7 @@ static void attach_tablet_pad(struct roots_tablet_pad *pad, pad->tablet = tool; + wl_list_remove(&pad->tablet_destroy.link); pad->tablet_destroy.notify = handle_pad_tool_destroy; wl_signal_add(&tool->device->events.destroy, &pad->tablet_destroy); } @@ -812,7 +813,8 @@ static void seat_add_tablet_pad(struct roots_seat *seat, &tablet_pad->device_destroy); tablet_pad->attach.notify = handle_tablet_pad_attach; - wl_signal_add(&tablet_pad->device->tablet_pad->events.attach_tablet, &tablet_pad->attach); + wl_signal_add(&tablet_pad->device->tablet_pad->events.attach_tablet, + &tablet_pad->attach); tablet_pad->button.notify = handle_tablet_pad_button; wl_signal_add(&tablet_pad->device->tablet_pad->events.button, &tablet_pad->button); @@ -823,6 +825,8 @@ static void seat_add_tablet_pad(struct roots_seat *seat, tablet_pad->ring.notify = handle_tablet_pad_ring; wl_signal_add(&tablet_pad->device->tablet_pad->events.ring, &tablet_pad->ring); + wl_list_init(&tablet_pad->tablet_destroy.link); + struct roots_desktop *desktop = seat->input->server->desktop; tablet_pad->tablet_v2_pad = wlr_tablet_pad_create(desktop->tablet_v2, seat->seat, device); |