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

Remove useless member of libvlc private data

parent 36827a83
......@@ -277,7 +277,6 @@ libvlc_int_t * libvlc_InternalCreate( void )
/* Initialize mutexes */
vlc_mutex_init( &priv->timer_lock );
vlc_cond_init( &priv->exiting );
return p_libvlc;
}
......@@ -1133,7 +1132,6 @@ void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
msg_Destroy( p_libvlc );
/* Destroy mutexes */
vlc_cond_destroy( &priv->exiting );
vlc_mutex_destroy( &priv->timer_lock );
#ifndef NDEBUG /* Hack to dump leaked objects tree */
......
......@@ -200,7 +200,6 @@ typedef struct sap_handler_t sap_handler_t;
typedef struct libvlc_priv_t
{
libvlc_int_t public_data;
vlc_cond_t exiting; ///< signaled when VLC wants to exit
int i_last_input_id ; ///< Last id of input item
......
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