summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avfiltergraph.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index d4b6bf1b87..684da30380 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -37,10 +37,8 @@ AVFilterGraph *avfilter_create_graph(void)
static void destroy_graph_filters(AVFilterGraph *graph)
{
- unsigned i;
-
- for(i = 0; i < graph->filter_count; i ++)
- avfilter_destroy(graph->filters[i]);
+ for(; graph->filter_count > 0; graph->filter_count --)
+ avfilter_destroy(graph->filters[graph->filter_count - 1]);
av_freep(&graph->filters);
}