diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index e7ffb6bd1..1470f9017 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp | |||
| @@ -193,13 +193,10 @@ private: | |||
| 193 | template <typename T> | 193 | template <typename T> |
| 194 | static void BuildEntryIndex(std::vector<FileSys::Entry>& entries, const std::vector<T>& new_data, | 194 | static void BuildEntryIndex(std::vector<FileSys::Entry>& entries, const std::vector<T>& new_data, |
| 195 | FileSys::EntryType type) { | 195 | FileSys::EntryType type) { |
| 196 | entries.reserve(entries.size() + new_data.size()); | ||
| 197 | |||
| 196 | for (const auto& new_entry : new_data) { | 198 | for (const auto& new_entry : new_data) { |
| 197 | FileSys::Entry entry; | 199 | entries.emplace_back(new_entry->GetName(), type, new_entry->GetSize()); |
| 198 | entry.filename[0] = '\0'; | ||
| 199 | std::strncat(entry.filename, new_entry->GetName().c_str(), FileSys::FILENAME_LENGTH - 1); | ||
| 200 | entry.type = type; | ||
| 201 | entry.file_size = new_entry->GetSize(); | ||
| 202 | entries.emplace_back(std::move(entry)); | ||
| 203 | } | 200 | } |
| 204 | } | 201 | } |
| 205 | 202 | ||