aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-04-12 08:58:01 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-04-12 08:58:01 -0400
commit6a66d6848a834eddae8225fd723a2a05e98b3c4d (patch)
treeea462c43c3f608de0b0d1ec753ce867a82c7a01c /src
parent0e9a729bc2208d37ae98383bf9aafbfbc3de4f9d (diff)
downloadstasis-6a66d6848a834eddae8225fd723a2a05e98b3c4d.tar.gz
Free directory pointer
Diffstat (limited to 'src')
-rw-r--r--src/deliverable.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/deliverable.c b/src/deliverable.c
index 039658b..b71b178 100644
--- a/src/deliverable.c
+++ b/src/deliverable.c
@@ -1188,6 +1188,7 @@ static struct StrList *listdir(const char *path) {
}
strlist_append(&node, rec->d_name);
}
+ closedir(dp);
return node;
}