pipewire: module-loopback: fix delay buffer memory leak

This commit is contained in:
Barnabás Pőcze 2023-12-28 16:47:23 +01:00 committed by Wim Taymans
parent 0c99d37db2
commit 4fd1f88a99

View file

@ -592,6 +592,7 @@ static void impl_destroy(struct impl *impl)
pw_properties_free(impl->capture_props); pw_properties_free(impl->capture_props);
pw_properties_free(impl->playback_props); pw_properties_free(impl->playback_props);
free(impl->buffer_data);
free(impl); free(impl);
} }