1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-10 06:01:52 +00:00

settings: fix correctness issue in LazyFileAccessor

This commit is contained in:
Michael Scire 2021-10-09 14:20:37 -07:00
parent ec65c39d17
commit ce8aacef21

View file

@ -52,7 +52,7 @@ namespace ams::settings::impl {
public:
LazyFileAccessor() : m_is_activated(false), m_is_busy(false), m_is_cached(false), m_is_modified(false), m_is_file_size_changed(false), m_mount_name{}, m_file_path{}, m_open_mode(0), m_file_size(0), m_offset(0), m_size(0), m_mutex(false), m_timer_event(os::EventClearMode_AutoClear), m_thread{} {
std::memset(m_buffer, 0, sizeof(m_buffer));
std::memset(m_thread_stack, 0, sizeof(m_buffer));
std::memset(m_thread_stack, 0, sizeof(m_thread_stack));
}
Result Activate();