Fix invalid "closedir(...)" on NULL ptr

This commit is contained in:
Stephen Seo 2024-11-07 13:30:59 +09:00
parent 81c1123b7f
commit 53b3974d58

View file

@ -232,8 +232,6 @@ int c_simple_http_helper_mkdir_tree(const char *path) {
return 1;
} else if (errno == ENOENT) {
// Directory doesn't exist, create dir tree.
closedir(dir_ptr);
size_t buf_size = strlen(path) + 1;
char *buf = malloc(buf_size);
memcpy(buf, path, buf_size - 1);
@ -256,7 +254,6 @@ int c_simple_http_helper_mkdir_tree(const char *path) {
return 0;
} else {
// Other directory error.
closedir(dir_ptr);
return 2;
}
}