]> git.sesse.net Git - vlc/commitdiff
control/core.c: Fix a warning about lock being an usunsed variable, by using lock.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 3 Nov 2007 12:16:02 +0000 (12:16 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 3 Nov 2007 12:16:02 +0000 (12:16 +0000)
src/control/core.c

index a3cf347bf0a66d09cdf0198c3bee92ab2e7117e4..69f94bdd6d45cc790d5ec9330dfb0ecf216f1184 100644 (file)
@@ -136,15 +136,15 @@ void libvlc_release( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
 
     assert( p_instance->ref_count > 0 );
 
-    vlc_mutex_lock( &p_instance->instance_lock );
+    vlc_mutex_lock( lock );
     refs = --p_instance->ref_count;
     if( refs == 0 )
         libvlc_event_fini( p_instance, p_e );
-    vlc_mutex_unlock( &p_instance->instance_lock );
+    vlc_mutex_unlock( lock );
 
     if( refs == 0 )
     {
-        vlc_mutex_destroy( &p_instance->instance_lock );
+        vlc_mutex_destroy( lock );
         vlc_mutex_destroy( &p_instance->event_callback_lock );
         libvlc_InternalCleanup( p_instance->p_libvlc_int );
         libvlc_InternalDestroy( p_instance->p_libvlc_int, VLC_FALSE );