From 9ecdd76679e7744b89a9f8548a19b04e694e3e0a Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Mon, 15 Apr 2013 18:04:24 +0200 Subject: lavfi/curves: fix memleak after master component dition. --- libavfilter/vf_curves.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_curves.c') diff --git a/libavfilter/vf_curves.c b/libavfilter/vf_curves.c index dc012fa626..9f5d8bd166 100644 --- a/libavfilter/vf_curves.c +++ b/libavfilter/vf_curves.c @@ -427,7 +427,7 @@ static av_cold int init(AVFilterContext *ctx) } } - for (i = 0; i < NB_COMP; i++) { + for (i = 0; i < NB_COMP + 1; i++) { struct keypoint *point = comp_points[i]; while (point) { struct keypoint *next = point->next; -- cgit v1.2.3