From 1d3f68c9ccc381460c6509d446124fb50f3f8d45 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 18 Mar 2024 15:22:13 -0400 Subject: Add missing cleanup * Closes dangling file streams scattered throughout * Frees pointers related to Delivery.docker missed during implementation --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 85a3b56..941923a 100644 --- a/src/utils.c +++ b/src/utils.c @@ -484,7 +484,7 @@ int isempty_dir(const char *path) { } count++; } - + closedir(dp); return count == 0; } -- cgit