aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2025-02-04 11:44:10 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2025-02-04 11:44:10 -0500
commitf6922ea26a642f11c0e8cca656b04090e72d25f3 (patch)
tree331574809024a07102596c7e855c465030c365a1
parent41750cc2cbe10ebb6700536e2040272747f22b7c (diff)
downloadstasis-f6922ea26a642f11c0e8cca656b04090e72d25f3.tar.gz
test_recipe.c: free allocated resources
-rw-r--r--tests/test_recipe.c1
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);
}
}