xmvdemux: prefer av_freep() to deallocate audio stream structs.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-04-21 19:42:44 +02:00
parent 13381577d1
commit 80d51680b2
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ static int xmv_read_close(AVFormatContext *s)
{
XMVDemuxContext *xmv = s->priv_data;
av_free(xmv->audio);
av_freep(&xmv->audio);
return 0;
}