Skip to content
Snippets Groups Projects
Commit b5c92530 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

addons: missing threads join

parent 1edfc31a
No related branches found
No related tags found
No related merge requests found
......@@ -174,6 +174,9 @@ void addons_manager_Delete( addons_manager_t *p_manager )
vlc_cancel( p_manager->p_priv->installer.thread );
vlc_mutex_unlock( &p_manager->p_priv->installer.lock );
vlc_join( p_manager->p_priv->finder.thread, NULL );
vlc_join( p_manager->p_priv->installer.thread, NULL );
vlc_event_manager_fini( p_manager->p_event_manager );
#define FREE_QUEUE( name ) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment