From 5d1c853dad6ded857a52e95222c0b5877f4d9094 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 2 Apr 2024 13:45:53 -0400 Subject: strlist_free calls --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index fdc68ae..ab9fed3 100644 --- a/src/main.c +++ b/src/main.c @@ -128,8 +128,8 @@ void globals_free() { guard_free(globals.tmpdir); guard_free(globals.sysconfdir); guard_free(globals.conda_install_prefix); - guard_strlist_free(globals.conda_packages); - guard_strlist_free(globals.pip_packages); + guard_strlist_free(&globals.conda_packages); + guard_strlist_free(&globals.pip_packages); guard_free(globals.jfrog.arch); guard_free(globals.jfrog.os); guard_free(globals.jfrog.repo); -- cgit