mirror of
https://github.com/videolan/vlc.git
synced 2024-11-28 12:26:11 +08:00
Fix memleaks when closing the module.
This commit is contained in:
parent
18d635e38d
commit
f99e6e9076
@ -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 );
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user