avfiltergraph: free the sink_links heap.

pull/30/merge
Nicolas George 13 years ago
parent c799e46231
commit 2e8f19d26f
  1. 1
      libavfilter/avfiltergraph.c

@ -55,6 +55,7 @@ void avfilter_graph_free(AVFilterGraph **graph)
return;
for (; (*graph)->filter_count > 0; (*graph)->filter_count--)
avfilter_free((*graph)->filters[(*graph)->filter_count - 1]);
av_freep(&(*graph)->sink_links);
av_freep(&(*graph)->scale_sws_opts);
av_freep(&(*graph)->filters);
av_freep(graph);

Loading…
Cancel
Save