mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 14:04:11 +01:00
Fix memory leak in handle_layer_shell_surface
This commit is contained in:
parent
600676688a
commit
37471ac649
@ -325,12 +325,6 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) {
|
|||||||
layer_surface->client_pending.margin.bottom,
|
layer_surface->client_pending.margin.bottom,
|
||||||
layer_surface->client_pending.margin.left);
|
layer_surface->client_pending.margin.left);
|
||||||
|
|
||||||
struct sway_layer_surface *sway_layer =
|
|
||||||
calloc(1, sizeof(struct sway_layer_surface));
|
|
||||||
if (!sway_layer) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!layer_surface->output) {
|
if (!layer_surface->output) {
|
||||||
// Assign last active output
|
// Assign last active output
|
||||||
struct sway_container *output = NULL;
|
struct sway_container *output = NULL;
|
||||||
@ -352,6 +346,12 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) {
|
|||||||
layer_surface->output = output->sway_output->wlr_output;
|
layer_surface->output = output->sway_output->wlr_output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct sway_layer_surface *sway_layer =
|
||||||
|
calloc(1, sizeof(struct sway_layer_surface));
|
||||||
|
if (!sway_layer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
sway_layer->surface_commit.notify = handle_surface_commit;
|
sway_layer->surface_commit.notify = handle_surface_commit;
|
||||||
wl_signal_add(&layer_surface->surface->events.commit,
|
wl_signal_add(&layer_surface->surface->events.commit,
|
||||||
&sway_layer->surface_commit);
|
&sway_layer->surface_commit);
|
||||||
|
Loading…
Reference in New Issue
Block a user