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

Remove unused b_playlist_locked

parent 8e6039b9
...@@ -138,7 +138,6 @@ libvlc_instance_t * libvlc_new( int argc, const char *const *argv, ...@@ -138,7 +138,6 @@ libvlc_instance_t * libvlc_new( int argc, const char *const *argv,
p_new->libvlc_vlm.p_vlm = NULL; p_new->libvlc_vlm.p_vlm = NULL;
p_new->libvlc_vlm.p_event_manager = NULL; p_new->libvlc_vlm.p_event_manager = NULL;
p_new->libvlc_vlm.pf_release = NULL; p_new->libvlc_vlm.pf_release = NULL;
p_new->b_playlist_locked = 0;
p_new->ref_count = 1; p_new->ref_count = 1;
p_new->verbosity = 1; p_new->verbosity = 1;
p_new->p_callback_list = NULL; p_new->p_callback_list = NULL;
......
...@@ -70,7 +70,6 @@ struct libvlc_instance_t ...@@ -70,7 +70,6 @@ struct libvlc_instance_t
{ {
libvlc_int_t *p_libvlc_int; libvlc_int_t *p_libvlc_int;
libvlc_vlm_t libvlc_vlm; libvlc_vlm_t libvlc_vlm;
int b_playlist_locked;
unsigned ref_count; unsigned ref_count;
int verbosity; int verbosity;
vlc_mutex_t instance_lock; vlc_mutex_t instance_lock;
......
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