Browse Source

libvlc_destroy() -> libvlc_release()

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

+ 1 - 1
Sources/VLCLibrary.m

@@ -108,7 +108,7 @@ static void * DestroySharedLibraryAtExit( void )
         libvlc_exception_t ex;
         libvlc_exception_init( &ex );
         
-        libvlc_destroy( instance, &ex );
+        libvlc_release( instance, &ex );
     }
     instance = nil;
     [audio release];