]> git.sesse.net Git - vlc/commitdiff
Remove useless member of libvlc private data
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 2 Jan 2010 21:15:58 +0000 (23:15 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 2 Jan 2010 21:15:58 +0000 (23:15 +0200)
src/libvlc.c
src/libvlc.h

index 3d7cabdb8e6e19872d032b65338ab4b4ed37ccf7..2a54c70a61450e38fc06d00f01d4cc6a1708bb07 100644 (file)
@@ -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 */
index 640c4b8226fd7536822e74eba629c392dc952663..47e86ccf376fd4a8bf87c663adcda64a0ef3f594 100644 (file)
@@ -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