mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 02:20:05 +01:00
test: unref the litest device *after* removing it from the path interface
Our own reference may be the last one that's still alive if the context is currently suspended (litest_suspend()). If we unref before removing it from the path interface, we access already freed memory. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
This commit is contained in:
parent
b18f9e6944
commit
a06256d1c3
1 changed files with 1 additions and 1 deletions
|
|
@ -1341,8 +1341,8 @@ litest_delete_device(struct litest_device *d)
|
|||
litest_assert_int_eq(d->skip_ev_syn, 0);
|
||||
|
||||
if (d->libinput_device) {
|
||||
libinput_device_unref(d->libinput_device);
|
||||
libinput_path_remove_device(d->libinput_device);
|
||||
libinput_device_unref(d->libinput_device);
|
||||
}
|
||||
if (d->owns_context)
|
||||
libinput_unref(d->libinput);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue