You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/formats: fix leak of formats on error
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
@@ -518,6 +518,8 @@ void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
|
||||
int ret = ref_fn(fmts, &ctx->inputs[i]->out_fmts); \
|
||||
if (ret < 0) { \
|
||||
unref_fn(&fmts); \
|
||||
av_freep(&fmts->list); \
|
||||
av_freep(&fmts); \
|
||||
return ret; \
|
||||
} \
|
||||
count++; \
|
||||
@@ -528,6 +530,8 @@ void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
|
||||
int ret = ref_fn(fmts, &ctx->outputs[i]->in_fmts); \
|
||||
if (ret < 0) { \
|
||||
unref_fn(&fmts); \
|
||||
av_freep(&fmts->list); \
|
||||
av_freep(&fmts); \
|
||||
return ret; \
|
||||
} \
|
||||
count++; \
|
||||
|
Reference in New Issue
Block a user