Commit d68ac92d authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Replace an incorrect av_free() in movenc.c with av_freep().

parent 27b4d154
...@@ -3598,7 +3598,7 @@ static int mov_create_chapter_track(AVFormatContext *s, int tracknum) ...@@ -3598,7 +3598,7 @@ static int mov_create_chapter_track(AVFormatContext *s, int tracknum)
track->enc->extradata = buf; track->enc->extradata = buf;
track->enc->extradata_size = size; track->enc->extradata_size = size;
} else { } else {
av_free(&buf); av_freep(&buf);
} }
} }
#endif #endif
......
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