avutil/channel_layout: Fix leak of string

Fixes memleaks in the channel_layout FATE-test.

Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-03-15 15:44:53 +01:00
parent 5b59c072f5
commit 9e241bdffd

View File

@ -587,6 +587,7 @@ int av_channel_layout_from_string(AVChannelLayout *channel_layout,
av_free(channel);
av_free(chname);
}
av_free(chlist);
return 0;
}