Commit e5143838 authored by Rafaël Carré's avatar Rafaël Carré

libvlc_release() has only 1 parameter now

parent 88fc2c28
...@@ -83,7 +83,7 @@ void libvlc_log_close( libvlc_log_t *p_log, libvlc_exception_t *p_e ) ...@@ -83,7 +83,7 @@ void libvlc_log_close( libvlc_log_t *p_log, libvlc_exception_t *p_e )
if( p_log && p_log->p_messages ) if( p_log && p_log->p_messages )
{ {
msg_Unsubscribe(p_log->p_instance->p_libvlc_int, p_log->p_messages); msg_Unsubscribe(p_log->p_instance->p_libvlc_int, p_log->p_messages);
libvlc_release( p_log->p_instance, p_e ); libvlc_release( p_log->p_instance );
free(p_log); free(p_log);
} }
else else
......
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