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

Actually free the data

parent 3065c6a5
...@@ -115,7 +115,7 @@ static inline vlc_meta_t *vlc_meta_New( void ) ...@@ -115,7 +115,7 @@ static inline vlc_meta_t *vlc_meta_New( void )
static inline void vlc_meta_Delete( vlc_meta_t *m ) static inline void vlc_meta_Delete( vlc_meta_t *m )
{ {
int i; int i;
for( i = 0; i < 0; i++ ) for( i = 0; i < VLC_META_TYPE_COUNT ; i++ )
free( m->ppsz_meta[i] ); free( m->ppsz_meta[i] );
vlc_dictionary_clear( &m->extra_tags ); vlc_dictionary_clear( &m->extra_tags );
free( m ); free( m );
......
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