aboutsummaryrefslogtreecommitdiff
path: root/src/utils.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-03-18 15:22:13 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-03-18 15:22:13 -0400
commit1d3f68c9ccc381460c6509d446124fb50f3f8d45 (patch)
treeae5dc643508b34cf800420b6fb38b9b16c53e956 /src/utils.c
parent9b234cdb4b52a61bb00586e65c5ba59544e0b1b5 (diff)
downloadstasis-1d3f68c9ccc381460c6509d446124fb50f3f8d45.tar.gz
Add missing cleanup
* Closes dangling file streams scattered throughout * Frees pointers related to Delivery.docker missed during implementation
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c2
1 files changed, 1 insertions, 1 deletions
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;
}