Commit 5eb793f9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

fetcher and preparser don't need object names

(cherry picked from commit 62ab4dde)

Conflicts:

	src/playlist/thread.c
parent cddccd6c
......@@ -69,7 +69,6 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
vlc_object_release( p_playlist );
return;
}
p_playlist->p_preparse->psz_object_name = strdup( "preparser" );
p_playlist->p_preparse->i_waiting = 0;
p_playlist->p_preparse->pp_waiting = NULL;
......@@ -95,7 +94,6 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
vlc_object_release( p_playlist );
return;
}
p_playlist->p_fetcher->psz_object_name = strdup( "fetcher" );
p_playlist->p_fetcher->i_waiting = 0;
p_playlist->p_fetcher->pp_waiting = NULL;
p_playlist->p_fetcher->i_art_policy = var_CreateGetInteger( p_playlist,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment