device-manager: Free a hook slot to prevent segv on unload

This commit is contained in:
Colin Guthrie 2011-06-06 21:16:11 +02:00
parent b3e4152916
commit 22c0dcbc08

View file

@ -1576,6 +1576,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);