diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-04 09:32:21 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-04 09:32:21 -0500 |
commit | a897adba3b034234f9ed8d1759f63b78f0ce5023 (patch) | |
tree | 94c39a2d398fe8d8971bd6fe9f111b94b3f1d8d0 | |
parent | 83a0b4cebcdcc0c8cf6f3f28c304140a7fc2dcd6 (diff) | |
download | stasis-a897adba3b034234f9ed8d1759f63b78f0ce5023.tar.gz |
Free members recently added to Delivery structure
-rw-r--r-- | src/lib/delivery/delivery.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/delivery/delivery.c b/src/lib/delivery/delivery.c index aa3e51a..ad947f3 100644 --- a/src/lib/delivery/delivery.c +++ b/src/lib/delivery/delivery.c @@ -50,8 +50,10 @@ void delivery_free(struct Delivery *ctx) { guard_free(ctx->conda.tool_build_version); guard_strlist_free(&ctx->conda.conda_packages); guard_strlist_free(&ctx->conda.conda_packages_defer); + guard_strlist_free(&ctx->conda.conda_packages_purge); guard_strlist_free(&ctx->conda.pip_packages); guard_strlist_free(&ctx->conda.pip_packages_defer); + guard_strlist_free(&ctx->conda.pip_packages_purge); guard_strlist_free(&ctx->conda.wheels_packages); for (size_t i = 0; i < sizeof(ctx->tests) / sizeof(ctx->tests[0]); i++) { @@ -62,6 +64,7 @@ void delivery_free(struct Delivery *ctx) { guard_free(ctx->tests[i].repository_info_tag); guard_strlist_free(&ctx->tests[i].repository_remove_tags); guard_free(ctx->tests[i].script); + guard_free(ctx->tests[i].script_setup); guard_free(ctx->tests[i].build_recipe); // test-specific runtime variables guard_runtime_free(ctx->tests[i].runtime.environ); |