mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 16:42:26 +00:00
output: add a swapchain NULL check in wlr_output_commit_state()
Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3504
This commit is contained in:
parent
46a686ce6b
commit
ff9c52801f
@ -817,7 +817,8 @@ bool wlr_output_commit_state(struct wlr_output *output,
|
||||
output->needs_frame = false;
|
||||
}
|
||||
|
||||
if (pending.committed & WLR_OUTPUT_STATE_BUFFER) {
|
||||
if ((pending.committed & WLR_OUTPUT_STATE_BUFFER) &&
|
||||
output->swapchain != NULL) {
|
||||
wlr_swapchain_set_buffer_submitted(output->swapchain, pending.buffer);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user