]> git.sesse.net Git - vlc/blobdiff - src/interface/interface.c
Remove intf_thread_t.change_lock
[vlc] / src / interface / interface.c
index ca4ae334d8bfee1e23e2bc41b21b3326e3a1b158..c48986a1f65880de085d95872e4b2939a5d94a12 100644 (file)
@@ -69,7 +69,6 @@ static void intf_Destroy( vlc_object_t *obj )
 
     free( p_intf->psz_intf );
     config_ChainDestroy( p_intf->p_cfg );
-    vlc_mutex_destroy( &p_intf->change_lock );
 }
 
 
@@ -112,9 +111,6 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module )
         return NULL;
     }
 
-    /* Initialize mutexes */
-    vlc_mutex_init( &p_intf->change_lock );
-
     /* Attach interface to its parent object */
     vlc_object_attach( p_intf, p_this );
     vlc_object_set_destructor( p_intf, intf_Destroy );