]> git.sesse.net Git - vlc/blobdiff - bindings/python/vlc_instance.c
Don't put in SUBDIRS dir without Makefile
[vlc] / bindings / python / vlc_instance.c
index c1d981f06df956e183ed2d98a65bb75629f259a9..23459be8a1ac429388a4b8f497d639e6a8290f4f 100644 (file)
@@ -111,8 +111,7 @@ vlcInstance_new( PyTypeObject *type, PyObject *args, PyObject *kwds )
 static void
 vlcInstance_dealloc( PyObject *self )
 {
-    libvlc_exception_t ex;
-    libvlc_release( LIBVLC_INSTANCE->p_instance, &ex );
+    libvlc_release( LIBVLC_INSTANCE->p_instance );
     PyObject_DEL( self );
 }