From 3890f06c831efb0d5791c14bdceb51249c997649 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 2 Jun 2020 18:15:48 +0200 Subject: [PATCH] stream: let the node_destroy() destroy the proxy as well --- src/pipewire/stream.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pipewire/stream.c b/src/pipewire/stream.c index a27876a01..ea96a94af 100644 --- a/src/pipewire/stream.c +++ b/src/pipewire/stream.c @@ -1573,9 +1573,6 @@ int pw_stream_disconnect(struct pw_stream *stream) if (impl->node) pw_impl_node_set_active(impl->node, false); - if (stream->proxy) - pw_proxy_destroy(stream->proxy); - if (impl->node) { pw_impl_node_destroy(impl->node); impl->node = NULL;