Commit 9ecdd766 authored by Clément Bœsch's avatar Clément Bœsch

lavfi/curves: fix memleak after master component dition.

parent aba678ab
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment