diff options
author | emersion <contact@emersion.fr> | 2018-03-31 13:47:22 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-31 13:47:22 -0400 |
commit | 8aedc042eeaa95a7a0be7c1dd06e3739ee1c7bd4 (patch) | |
tree | 407b0e53e843fd15a9e0a7bc92e75e25c6af3b9b /sway/desktop | |
parent | 59f362196b84d6cf455b574d887ec3e0c3163eb3 (diff) | |
download | sway-8aedc042eeaa95a7a0be7c1dd06e3739ee1c7bd4.tar.xz |
Fix two segfaults when destroying outputs
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/layer_shell.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c index 5c96659a..c18f51c7 100644 --- a/sway/desktop/layer_shell.c +++ b/sway/desktop/layer_shell.c @@ -238,11 +238,12 @@ static void handle_destroy(struct wl_listener *listener, void *data) { wl_list_remove(&sway_layer->unmap.link); wl_list_remove(&sway_layer->surface_commit.link); if (sway_layer->layer_surface->output != NULL) { + struct sway_output *output = sway_layer->layer_surface->output->data; + arrange_layers(output); + wl_list_remove(&sway_layer->output_destroy.link); } - struct sway_output *output = sway_layer->layer_surface->output->data; free(sway_layer); - arrange_layers(output); } static void handle_map(struct wl_listener *listener, void *data) { |