Explorar el Código

libvlc_release() has only 1 parameter

Rafaël Carré hace 17 años
padre
commit
87468feaf5
Se han modificado 1 ficheros con 1 adiciones y 7 borrados
  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;