Browse Source

libvlc_release() has only 1 parameter

Rafaël Carré 17 years ago
parent
commit
87468feaf5
1 changed files with 1 additions and 7 deletions
  1. 1 7
      Sources/VLCLibrary.m

+ 1 - 7
Sources/VLCLibrary.m

@@ -98,13 +98,7 @@ static void * DestroySharedLibraryAtExit( void )
 - (void)dealloc 
 {
     if( instance ) 
-    {
-        libvlc_exception_t ex;
-        libvlc_exception_init( &ex );
-        
-        libvlc_release( instance, &ex );
-        libvlc_exception_clear( &ex );
-    }
+        libvlc_release( instance );
     
     if( self == sharedLibrary ) 
         sharedLibrary = nil;