aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-04-02 13:45:53 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-04-02 18:55:46 -0400
commit5d1c853dad6ded857a52e95222c0b5877f4d9094 (patch)
tree68a7af4e5b1105a9cd23f20d0070e54a2c618133
parent977399bb759aacd2a18ba76df78078ee4cee6e67 (diff)
downloadstasis-5d1c853dad6ded857a52e95222c0b5877f4d9094.tar.gz
strlist_free calls
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
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);