mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-23 05:15:58 +01:00
surface: fix crash on NULL commit
This commit is contained in:
parent
6f0eb11024
commit
68c133da2f
1 changed files with 6 additions and 2 deletions
|
@ -142,8 +142,12 @@ static void surface_set_input_region(struct wl_client *client,
|
||||||
static void surface_state_finalize(struct wlr_surface *surface,
|
static void surface_state_finalize(struct wlr_surface *surface,
|
||||||
struct wlr_surface_state *state) {
|
struct wlr_surface_state *state) {
|
||||||
if ((state->committed & WLR_SURFACE_STATE_BUFFER)) {
|
if ((state->committed & WLR_SURFACE_STATE_BUFFER)) {
|
||||||
wlr_buffer_get_resource_size(state->buffer, surface->renderer,
|
if (state->buffer != NULL) {
|
||||||
&state->buffer_width, &state->buffer_height);
|
wlr_buffer_get_resource_size(state->buffer, surface->renderer,
|
||||||
|
&state->buffer_width, &state->buffer_height);
|
||||||
|
} else {
|
||||||
|
state->buffer_width = state->buffer_height = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int width = state->buffer_width / state->scale;
|
int width = state->buffer_width / state->scale;
|
||||||
|
|
Loading…
Reference in a new issue