Merge pull request #2665 from emersion/render-output-segfault

Fix segfault in output_render
This commit is contained in:
Ryan Dwyer 2018-09-21 20:15:27 +10:00 committed by GitHub
commit 057635f1a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -920,6 +920,11 @@ void output_render(struct sway_output *output, struct timespec *when,
return;
}
struct sway_workspace *workspace = output->current.active_workspace;
if (workspace == NULL) {
return;
}
wlr_renderer_begin(renderer, wlr_output->width, wlr_output->height);
if (!pixman_region32_not_empty(damage)) {
@ -935,13 +940,11 @@ void output_render(struct sway_output *output, struct timespec *when,
pixman_region32_union_rect(damage, damage, 0, 0, width, height);
}
struct sway_workspace *workspace = output->current.active_workspace;
struct sway_container *fullscreen_con = workspace->current.fullscreen;
if (output_has_opaque_overlay_layer_surface(output)) {
goto render_overlay;
}
struct sway_container *fullscreen_con = workspace->current.fullscreen;
if (fullscreen_con) {
float clear_color[] = {0.0f, 0.0f, 0.0f, 1.0f};