mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Fix layer surface crash on output destroy
Before freeing sway_output, NULL the wlr_output reference to it. Check for that NULL in layer_shell handle_destroy. Don't damage null container in unmap. Additionaly, terminate swaybg if its output is being disabled.
This commit is contained in:
parent
0e51c7be44
commit
22170bde77
@ -128,6 +128,10 @@ void apply_output_config(struct output_config *oc, struct sway_container *output
|
|||||||
struct wlr_output *wlr_output = output->sway_output->wlr_output;
|
struct wlr_output *wlr_output = output->sway_output->wlr_output;
|
||||||
|
|
||||||
if (oc && oc->enabled == 0) {
|
if (oc && oc->enabled == 0) {
|
||||||
|
if (output->sway_output->bg_pid != 0) {
|
||||||
|
terminate_swaybg(output->sway_output->bg_pid);
|
||||||
|
output->sway_output->bg_pid = 0;
|
||||||
|
}
|
||||||
container_destroy(output);
|
container_destroy(output);
|
||||||
wlr_output_layout_remove(root_container.sway_root->output_layout,
|
wlr_output_layout_remove(root_container.sway_root->output_layout,
|
||||||
wlr_output);
|
wlr_output);
|
||||||
|
@ -255,6 +255,9 @@ static void unmap(struct sway_layer_surface *sway_layer) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
struct sway_output *output = wlr_output->data;
|
struct sway_output *output = wlr_output->data;
|
||||||
|
if (output == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
output_damage_surface(output, sway_layer->geo.x, sway_layer->geo.y,
|
output_damage_surface(output, sway_layer->geo.x, sway_layer->geo.y,
|
||||||
sway_layer->layer_surface->surface, true);
|
sway_layer->layer_surface->surface, true);
|
||||||
}
|
}
|
||||||
@ -274,9 +277,11 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
|
|||||||
wl_list_remove(&sway_layer->surface_commit.link);
|
wl_list_remove(&sway_layer->surface_commit.link);
|
||||||
if (sway_layer->layer_surface->output != NULL) {
|
if (sway_layer->layer_surface->output != NULL) {
|
||||||
struct sway_output *output = sway_layer->layer_surface->output->data;
|
struct sway_output *output = sway_layer->layer_surface->output->data;
|
||||||
arrange_layers(output);
|
if (output != NULL) {
|
||||||
|
arrange_layers(output);
|
||||||
|
}
|
||||||
wl_list_remove(&sway_layer->output_destroy.link);
|
wl_list_remove(&sway_layer->output_destroy.link);
|
||||||
|
sway_layer->layer_surface->output = NULL;
|
||||||
}
|
}
|
||||||
free(sway_layer);
|
free(sway_layer);
|
||||||
}
|
}
|
||||||
|
@ -156,6 +156,9 @@ static struct sway_container *container_output_destroy(
|
|||||||
wl_list_remove(&output->sway_output->damage_destroy.link);
|
wl_list_remove(&output->sway_output->damage_destroy.link);
|
||||||
wl_list_remove(&output->sway_output->damage_frame.link);
|
wl_list_remove(&output->sway_output->damage_frame.link);
|
||||||
|
|
||||||
|
// clear the wlr_output reference to this container
|
||||||
|
output->sway_output->wlr_output->data = NULL;
|
||||||
|
|
||||||
wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
|
wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
|
||||||
_container_destroy(output);
|
_container_destroy(output);
|
||||||
return &root_container;
|
return &root_container;
|
||||||
|
Loading…
Reference in New Issue
Block a user