Added a missing closedir

This commit is contained in:
Celine Mercier
2016-09-15 11:58:34 +02:00
parent 8724445fa1
commit 0a3c23d9d0

View File

@ -55,6 +55,8 @@ int count_dir(char* dir_path)
count++;
}
closedir(fd);
return count;
}