1
Fork 0

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
parent 0227a30bcf
commit 8aaba4fec3
1 changed files with 1 additions and 0 deletions

View File

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