Commit 12d37153 authored by michael's avatar michael

Prefer av_freep() over av_free() for variables in the context for saftey.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16838 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 21d7966c
......@@ -330,7 +330,7 @@ static int fourxm_read_close(AVFormatContext *s)
{
FourxmDemuxContext *fourxm = s->priv_data;
av_free(fourxm->tracks);
av_freep(&fourxm->tracks);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment