common: fs: file: Flush the file in GetSize

This ensures that GetSize always retrieves the correct file size after a write operation.
This commit is contained in:
Morph 2021-07-05 12:05:35 -04:00
parent bf50345d4c
commit d299d5531f

View File

@ -347,6 +347,9 @@ u64 IOFile::GetSize() const {
return 0;
}
// Flush any unwritten buffered data into the file prior to retrieving the file size.
std::fflush(file);
std::error_code ec;
const auto file_size = fs::file_size(file_path, ec);