From 65a4bd9c9ecd965f7f9e01ded23abe3d7c6dfb94 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Fri, 4 Apr 2008 20:05:01 +0000 Subject: [PATCH] Ensure that the filter_count member is reset to zero when emptying the graph Commited in SoC by Bobby Bingham on 2007-07-14 23:19:22 Originally committed as revision 12690 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfiltergraph.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index d4b6bf1..684da30 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); } -- 2.7.4