Commit 11b6a824 authored by Mina Nagy Zaki's avatar Mina Nagy Zaki Committed by Anton Khirnov

lavfi: avfilter_merge_formats: handle case where inputs are same

This fixes a double-free crash if lists are the same due to the two
merge_ref() calls at the end of the (useless) merging that happens.
Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 828bd088
......@@ -45,6 +45,9 @@ AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b)
AVFilterFormats *ret;
unsigned i, j, k = 0, m_count;
if (a == b)
return a;
ret = av_mallocz(sizeof(*ret));
/* merge list of formats */
......
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