mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
device-manager: Free a hook slot to prevent segv on unload
This commit is contained in:
parent
eff5bec87e
commit
b865999126
1 changed files with 3 additions and 0 deletions
|
|
@ -1574,6 +1574,9 @@ void pa__done(pa_module*m) {
|
|||
if (u->source_unlink_hook_slot)
|
||||
pa_hook_slot_free(u->source_unlink_hook_slot);
|
||||
|
||||
if (u->connection_unlink_hook_slot)
|
||||
pa_hook_slot_free(u->connection_unlink_hook_slot);
|
||||
|
||||
if (u->save_time_event)
|
||||
u->core->mainloop->time_free(u->save_time_event);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue