mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-10 16:17:56 -05:00
common/fs/file: Default initialize IOFile members
Prevents a potential uninitialized read vector in the move constructor.
This commit is contained in:
@ -441,8 +441,8 @@ public:
|
||||
|
||||
private:
|
||||
std::filesystem::path file_path;
|
||||
FileAccessMode file_access_mode;
|
||||
FileType file_type;
|
||||
FileAccessMode file_access_mode{};
|
||||
FileType file_type{};
|
||||
|
||||
std::FILE* file = nullptr;
|
||||
};
|
||||
|
Reference in New Issue
Block a user