test/interactive-x11: handle NULL from xcb_wait_for_event

Can happen in cases like:
- There was an error between the error check and the call.
- The internal poll() fails.

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2017-04-28 09:33:25 +03:00
parent 6b57344c32
commit c9832d4374
1 changed files with 4 additions and 0 deletions

View File

@ -276,6 +276,10 @@ loop(xcb_connection_t *conn, struct keyboard *kbd)
}
event = xcb_wait_for_event(conn);
if (!event) {
continue;
}
process_event(event, kbd);
free(event);
}