From 9ecdd76679e7744b89a9f8548a19b04e694e3e0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Mon, 15 Apr 2013 18:04:24 +0200 Subject: [PATCH] lavfi/curves: fix memleak after master component dition. --- libavfilter/vf_curves.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;