Fix memleaks when closing the module.

This commit is contained in:
Rémi Duraffort 2008-08-12 22:21:52 +02:00
parent 18d635e38d
commit f99e6e9076

View File

@ -294,6 +294,12 @@ static void Close( vlc_object_t * p_this )
free( p_sys->track[i].p_extra );
es_format_Clean( &p_sys->track[i].fmt );
}
free( p_sys->psz_title );
free( p_sys->psz_author );
free( p_sys->psz_copyright );
free( p_sys->psz_comment );
free( p_sys->psz_rating );
free( p_sys );
}