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

libvlc_media: Destroy the cond and the mutex.

parent 8adbb2d7
...@@ -408,6 +408,9 @@ void libvlc_media_release( libvlc_media_t *p_md ) ...@@ -408,6 +408,9 @@ void libvlc_media_release( libvlc_media_t *p_md )
uninstall_input_item_observer( p_md ); uninstall_input_item_observer( p_md );
vlc_gc_decref( p_md->p_input_item ); vlc_gc_decref( p_md->p_input_item );
vlc_cond_destroy( &p_md->parsed_cond );
vlc_mutex_destroy( &p_md->parsed_lock );
/* Construct the event */ /* Construct the event */
libvlc_event_t event; libvlc_event_t event;
event.type = libvlc_MediaFreed; event.type = libvlc_MediaFreed;
......
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