mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2025-02-17 02:22:07 +01:00
Merge pull request #34 from acrisci/bug/fix-cleanup-pageflip-race
bugfix: add null check on output gbm on pageflip
This commit is contained in:
commit
b1ec0dce3a
1 changed files with 1 additions and 1 deletions
|
@ -631,7 +631,7 @@ static void page_flip_handler(int fd, unsigned seq,
|
||||||
struct wlr_backend_state *state =
|
struct wlr_backend_state *state =
|
||||||
wl_container_of(output->renderer, state, renderer);
|
wl_container_of(output->renderer, state, renderer);
|
||||||
|
|
||||||
if (output->bo[1]) {
|
if (output->gbm && output->bo[1]) {
|
||||||
gbm_surface_release_buffer(output->gbm, output->bo[1]);
|
gbm_surface_release_buffer(output->gbm, output->bo[1]);
|
||||||
output->bo[1] = NULL;
|
output->bo[1] = NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue