Change av_free to av_freep

Originally committed as revision 19360 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-07-06 16:49:36 +00:00
parent 16c8318513
commit 4f76697b3e
1 changed files with 3 additions and 3 deletions

View File

@ -143,9 +143,9 @@ static av_cold int iv_alloc_frames(Indeo3DecodeContext *s)
static av_cold void iv_free_func(Indeo3DecodeContext *s)
{
av_free(s->buf);
av_free(s->ModPred);
av_free(s->corrector_type);
av_freep(&s->buf);
av_freep(&s->ModPred);
av_freep(&s->corrector_type);
}
struct ustr {