Commit a2b24c29 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

control: Remove libvlc_event_fini exception handling, as we don't need it.

parent 19c4b89b
...@@ -139,7 +139,7 @@ void libvlc_release( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) ...@@ -139,7 +139,7 @@ void libvlc_release( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
vlc_mutex_lock( lock ); vlc_mutex_lock( lock );
refs = --p_instance->ref_count; refs = --p_instance->ref_count;
if( refs == 0 ) if( refs == 0 )
libvlc_event_fini( p_instance, p_e ); libvlc_event_fini( p_instance );
vlc_mutex_unlock( lock ); vlc_mutex_unlock( lock );
if( refs == 0 ) if( refs == 0 )
......
...@@ -51,7 +51,7 @@ void libvlc_event_init( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) ...@@ -51,7 +51,7 @@ void libvlc_event_init( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
* *
* finalization function. * finalization function.
**************************************************************************/ **************************************************************************/
void libvlc_event_fini( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) void libvlc_event_fini( libvlc_instance_t *p_instance )
{ {
} }
......
...@@ -47,7 +47,7 @@ VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_boo ...@@ -47,7 +47,7 @@ VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_boo
vlc_bool_t, int, const char *const * ) ); vlc_bool_t, int, const char *const * ) );
VLC_EXPORT (void, libvlc_event_init, ( libvlc_instance_t *, libvlc_exception_t * ) ); VLC_EXPORT (void, libvlc_event_init, ( libvlc_instance_t *, libvlc_exception_t * ) );
VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t *, libvlc_exception_t * ) ); VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t * ) );
/*************************************************************************** /***************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment