From d9ffe4c1364925822b0a71bb42779fb565908bb0 Mon Sep 17 00:00:00 2001 From: Kevin Lenzo Date: Mon, 17 Aug 2026 14:17:40 -0400 Subject: [PATCH] Fix inc_comp vector-length ownership --- src/programs/inc_comp/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/programs/inc_comp/main.c b/src/programs/inc_comp/main.c index 7ed9c3c6..11675539 100644 --- a/src/programs/inc_comp/main.c +++ b/src/programs/inc_comp/main.c @@ -110,6 +110,9 @@ main(int argc, char *argv[]) return 1; } + ckd_free(veclen); + veclen = NULL; + var_is_full = cmd_ln_int32("-fullvar"); if (var_is_full) { if (s3gau_read_full(cmd_ln_str("-invarfn"), @@ -225,4 +228,3 @@ main(int argc, char *argv[]) return 0; } -