Fix get_int_prop(WINDOW_TYPE) crash

This commit is contained in:
Simon Ser 2020-02-19 12:30:40 +01:00 committed by Brian Ashworth
parent af294289b1
commit f2a60d2d05
1 changed files with 4 additions and 1 deletions

View File

@ -178,7 +178,10 @@ static uint32_t get_int_prop(struct sway_view *view, enum sway_view_prop prop) {
}
return 0;
case VIEW_PROP_WINDOW_TYPE:
return *view->wlr_xwayland_surface->window_type;
if (view->wlr_xwayland_surface->window_type_len == 0) {
return 0;
}
return view->wlr_xwayland_surface->window_type[0];
default:
return 0;
}