1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

lavfi/graphparser: drop a redundant label

This commit is contained in:
Anton Khirnov 2023-01-08 12:51:42 +01:00
parent ca67a783ab
commit 54c0e72b42

View File

@ -421,7 +421,7 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
filters += strspn(filters, WHITESPACES);
if ((ret = parse_sws_flags(&filters, graph)) < 0)
goto fail;
goto end;
do {
AVFilterContext *filter;
@ -463,7 +463,7 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
*outputs = open_outputs;
return 0;
fail:end:
end:
while (graph->nb_filters)
avfilter_free(graph->filters[0]);
av_freep(&graph->filters);