From f22227e4203ca5d41efee27af7d9ff73ad017ab4 Mon Sep 17 00:00:00 2001 From: Ryan <22805788+ryanmich251@users.noreply.github.com> Date: Fri, 23 May 2025 15:28:53 -1000 Subject: [PATCH] fix double-malloc memleak --- src/extract.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/extract.c b/src/extract.c index ed4cff6..04dffed 100644 --- a/src/extract.c +++ b/src/extract.c @@ -1293,8 +1293,6 @@ int convert_to_catalog( QMALLOC(cat->ycpeak, int64_t, nobj, status); QMALLOC(cat->xpeak, int64_t, nobj, status); QMALLOC(cat->ypeak, int64_t, nobj, status); - QMALLOC(cat->cflux, float, nobj, status); - QMALLOC(cat->flux, float, nobj, status); QMALLOC(cat->flag, short, nobj, status); /* fill output arrays */