diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-04 11:44:10 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-04 11:44:10 -0500 |
commit | f6922ea26a642f11c0e8cca656b04090e72d25f3 (patch) | |
tree | 331574809024a07102596c7e855c465030c365a1 /tests | |
parent | 41750cc2cbe10ebb6700536e2040272747f22b7c (diff) | |
download | stasis-f6922ea26a642f11c0e8cca656b04090e72d25f3.tar.gz |
test_recipe.c: free allocated resources
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_recipe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_recipe.c b/tests/test_recipe.c index 531b3b4..fc7cc78 100644 --- a/tests/test_recipe.c +++ b/tests/test_recipe.c @@ -85,6 +85,7 @@ void test_recipe_clone() { // Verify the result path does not exist STASIS_ASSERT(result_path && access(result_path, F_OK) != 0, "result path should not exist"); } + guard_free(result_path); } } |