From 4e451eff51325cb0f523391bdede2aa0dec8517a Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Feb 2024 10:24:41 -0500 Subject: Free dangling global pointers --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/main.c b/src/main.c index 3d86aba..3b27dba 100644 --- a/src/main.c +++ b/src/main.c @@ -109,6 +109,8 @@ static void usage(char *progname) { 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) } -- cgit