pipewire: Follow-up with remoting pluging when releasing the head

Similarily to what the remoting plug-in does, explicitly call
weston_release_head() before removing the output list entry.

We do that to avoid lookup_pipewire_output() returning NULL and still
find out the pipewire_output.

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
This commit is contained in:
Marius Vlad 2023-02-16 21:34:04 +02:00
parent ca52c79c51
commit 5db6d19e6b

View file

@ -310,6 +310,8 @@ pipewire_output_destroy(struct weston_output *base_output)
struct pipewire_output *output = lookup_pipewire_output(base_output);
struct weston_mode *mode, *next;
weston_head_release(output->head);
wl_list_for_each_safe(mode, next, &base_output->mode_list, link) {
wl_list_remove(&mode->link);
free(mode);
@ -318,7 +320,6 @@ pipewire_output_destroy(struct weston_output *base_output)
pw_stream_destroy(output->stream);
wl_list_remove(&output->link);
weston_head_release(output->head);
free(output->head);
free(output);
}