# HG changeset patch # User pl # Date 1005442543 0 # Node ID b8e0d8204ff25a7415cfe93b2c6eaf4e5164c4ad # Parent a78ac799a30023340bbb9654a7b4d2cdaf1729f7 small fix diff -r a78ac799a300 -r b8e0d8204ff2 libmpdemux/demux_viv.c --- a/libmpdemux/demux_viv.c Sun Nov 11 01:18:40 2001 +0000 +++ b/libmpdemux/demux_viv.c Sun Nov 11 01:35:43 2001 +0000 @@ -539,17 +539,17 @@ 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; }