mirror of
https://github.com/mpv-player/mpv
synced 2025-01-24 19:37:30 +01:00
small fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2810 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
d7bb86940c
commit
ff534f0810
@ -539,17 +539,17 @@ if(demuxer->audio->id>=-1){
|
||||
void demux_close_vivo(demuxer_t *demuxer)
|
||||
{
|
||||
vivo_priv_t* priv=demuxer->priv;
|
||||
|
||||
if (priv->title)
|
||||
free(priv->title);
|
||||
if (priv->author)
|
||||
free(priv->author);
|
||||
if (priv->copyright)
|
||||
free(priv->copyright);
|
||||
if (priv->producer)
|
||||
free(priv->producer);
|
||||
if (priv)
|
||||
|
||||
if (priv) {
|
||||
if (priv->title)
|
||||
free(priv->title);
|
||||
if (priv->author)
|
||||
free(priv->author);
|
||||
if (priv->copyright)
|
||||
free(priv->copyright);
|
||||
if (priv->producer)
|
||||
free(priv->producer);
|
||||
free(priv);
|
||||
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user