mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 07:02:28 +00:00
alpha-modifier-v1: add a missing NULL check in wlr_alpha_modifier_v1_get_surface_state()
This commit is contained in:
parent
027d453f6a
commit
341154a5f6
@ -181,5 +181,8 @@ struct wlr_alpha_modifier_v1 *wlr_alpha_modifier_v1_create(struct wl_display *di
|
||||
const struct wlr_alpha_modifier_surface_v1_state *wlr_alpha_modifier_v1_get_surface_state(
|
||||
struct wlr_surface *wlr_surface) {
|
||||
struct wlr_alpha_modifier_surface_v1 *surface = surface_from_wlr_surface(wlr_surface);
|
||||
if (surface == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
return &surface->current;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user