backend/libinput: terminate display on error

This commit is contained in:
Simon Ser 2021-04-14 22:35:05 +02:00 committed by Kenny Levinsen
parent 7f09085461
commit 846e0838d6
1 changed files with 4 additions and 3 deletions

View File

@ -47,9 +47,10 @@ static const struct libinput_interface libinput_impl = {
static int handle_libinput_readable(int fd, uint32_t mask, void *_backend) {
struct wlr_libinput_backend *backend = _backend;
if (libinput_dispatch(backend->libinput_context) != 0) {
wlr_log(WLR_ERROR, "Failed to dispatch libinput");
// TODO: some kind of abort?
int ret = libinput_dispatch(backend->libinput_context);
if (ret != 0) {
wlr_log(WLR_ERROR, "Failed to dispatch libinput: %s", strerror(-ret));
wl_display_terminate(backend->display);
return 0;
}
struct libinput_event *event;