summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/path_utils/path_utils.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/common/path_utils/path_utils.c b/common/path_utils/path_utils.c
index 493e0a4df..97c845c70 100644
--- a/common/path_utils/path_utils.c
+++ b/common/path_utils/path_utils.c
@@ -538,6 +538,10 @@ int directory_list(const char *path, bool recursive,
error = path_concat(entry_path, sizeof(entry_path),
path, entry->d_name);
if (error != SUCCESS) {
+ closedir(dir);
+ /* Don't bother checking the return here.
+ * The path_concat error is more important
+ */
return error;
}
@@ -551,6 +555,10 @@ int directory_list(const char *path, bool recursive,
error = directory_list(entry_path, recursive,
callback, user_data);
if (error != SUCCESS) {
+ closedir(dir);
+ /* Don't bother checking the return here.
+ * The directory_list error is more important
+ */
return error;
}
}