input-method-v2: add popup_surface_from_resource()

This checks the resource type before casting its user data pointer.
This commit is contained in:
Simon Ser 2023-06-23 14:14:36 +02:00
parent fc9b58e84d
commit 00f1870d35
1 changed files with 9 additions and 1 deletions

View File

@ -165,9 +165,17 @@ struct wlr_input_popup_surface_v2 *wlr_input_popup_surface_v2_try_from_wlr_surfa
return (struct wlr_input_popup_surface_v2 *)surface->role_data;
}
static const struct zwp_input_popup_surface_v2_interface input_popup_impl;
static struct wlr_input_popup_surface_v2 *popup_surface_from_resource(struct wl_resource *resource) {
assert(wl_resource_instance_of(resource, &zwp_input_popup_surface_v2_interface,
&input_popup_impl));
return wl_resource_get_user_data(resource);
}
static void popup_resource_destroy(struct wl_resource *resource) {
struct wlr_input_popup_surface_v2 *popup_surface =
wl_resource_get_user_data(resource);
popup_surface_from_resource(resource);
if (popup_surface != NULL) {
wlr_surface_destroy_role_object(popup_surface->surface);
}