This commit is contained in:
Henrik Rydgård
2021-09-11 15:35:11 +02:00
parent b075b79175
commit 09f65db91c
2 changed files with 0 additions and 2 deletions

View File

@@ -654,7 +654,6 @@ u64 MetaFileSystem::getDirSize(const std::string &dirPath) {
for (auto file : allFiles) {
if (file.name == "." || file.name == "..")
continue;
_assert_(!file.name.empty());
if (file.type == FILETYPE_DIRECTORY) {
result += getDirSize(dirPath + file.name);
} else {