xwayland: Handle NULL xwl_seat in xwl_seat_can_emulate_pointer_warp

This can happen e.g. with weston's headless backend.

Reviewed-by: Olivier Fourdan <ofourdan@redhat.com>
This commit is contained in:
Michel Dänzer 2020-07-10 18:56:42 +02:00 committed by Michel Dänzer
parent ddb86e94c0
commit e33453f911
1 changed files with 6 additions and 1 deletions

View File

@ -2807,11 +2807,16 @@ xwl_seat_create_pointer_warp_emulator(struct xwl_seat *xwl_seat)
static Bool
xwl_seat_can_emulate_pointer_warp(struct xwl_seat *xwl_seat)
{
struct xwl_screen *xwl_screen = xwl_seat->xwl_screen;
struct xwl_screen *xwl_screen;
if (!xwl_seat)
return FALSE;
if (!xwl_seat->pointer)
return FALSE;
xwl_screen = xwl_seat->xwl_screen;
if (!xwl_screen->relative_pointer_manager)
return FALSE;