mirror of
https://github.com/swaywm/sway.git
synced 2025-01-23 17:26:41 +00:00
Free outputs on registry teardown
This commit is contained in:
parent
8d6f3fff24
commit
e39f846247
|
@ -3,6 +3,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "wayland-desktop-shell-client-protocol.h"
|
#include "wayland-desktop-shell-client-protocol.h"
|
||||||
#include "client/registry.h"
|
#include "client/registry.h"
|
||||||
|
#include "stringop.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
static void display_handle_mode(void *data, struct wl_output *wl_output,
|
static void display_handle_mode(void *data, struct wl_output *wl_output,
|
||||||
|
@ -110,7 +111,6 @@ void registry_teardown(struct registry *registry) {
|
||||||
wl_display_disconnect(registry->display);
|
wl_display_disconnect(registry->display);
|
||||||
}
|
}
|
||||||
if (registry->outputs) {
|
if (registry->outputs) {
|
||||||
// TODO: Free the outputs themselves
|
free_flat_list(registry->outputs);
|
||||||
list_free(registry->outputs);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue