1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-27 04:21:53 +02:00

control/media_descriptor.c: Don't forget to release the event manager. (Reported by polo78 on the forum and funman).

This commit is contained in:
Pierre d'Herbemont 2007-11-20 12:07:38 +00:00
parent 3e74374156
commit ade76749a5

View File

@ -326,6 +326,8 @@ void libvlc_media_descriptor_release( libvlc_media_descriptor_t *p_md )
/* Send the event */
libvlc_event_send( p_md->p_event_manager, &event );
libvlc_event_manager_release( p_md->p_event_manager );
char ** all_keys = vlc_dictionary_all_keys( &p_md->tags );
for( i = 0; all_keys[i]; i++ )
{