From f6922ea26a642f11c0e8cca656b04090e72d25f3 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 4 Feb 2025 11:44:10 -0500 Subject: test_recipe.c: free allocated resources --- tests/test_recipe.c | 1 + 1 file changed, 1 insertion(+) 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); } } -- cgit