mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
vsrc_movie: do not free avoption variables in uninit()
The generic code frees them as well. Since av_free was used to free them instead of av_freep, this would result in a double free.
This commit is contained in:
@@ -173,8 +173,6 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||
{
|
||||
MovieContext *movie = ctx->priv;
|
||||
|
||||
av_free(movie->file_name);
|
||||
av_free(movie->format_name);
|
||||
if (movie->codec_ctx)
|
||||
avcodec_close(movie->codec_ctx);
|
||||
if (movie->format_ctx)
|
||||
|
||||
Reference in New Issue
Block a user