diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-02 13:45:53 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-02 18:55:46 -0400 | 
| commit | 5d1c853dad6ded857a52e95222c0b5877f4d9094 (patch) | |
| tree | 68a7af4e5b1105a9cd23f20d0070e54a2c618133 | |
| parent | 977399bb759aacd2a18ba76df78078ee4cee6e67 (diff) | |
| download | stasis-5d1c853dad6ded857a52e95222c0b5877f4d9094.tar.gz | |
strlist_free calls
| -rw-r--r-- | src/main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -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); | 
