diff options
| author | bunnei <bunneidev@gmail.com> | 2018-11-23 23:58:31 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-23 23:58:31 -0500 |
| commit | 7c4fb09a7c0a41eb328cbbe6c7774e1cf4e9c1c4 (patch) | |
| tree | a4fe1b6d56c4fbbf8a18ee3ba5604a7ff510693b /src/core/hle/service/filesystem/filesystem.cpp | |
| parent | d01bf170c4200a595724d6d7227b76e92b832ad1 (diff) | |
| parent | c3becdbca7f1f20f8086b388564488646a2acb0a (diff) | |
Merge pull request #1731 from DarkLordZach/change-dir-crash
filesystem: Clear registered union paths on factory creation
Diffstat (limited to 'src/core/hle/service/filesystem/filesystem.cpp')
| -rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index 5d6294016..2aa77f68d 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp @@ -341,6 +341,10 @@ std::shared_ptr<FileSys::RegisteredCacheUnion> GetUnionContents() { return registered_cache_union; } +void ClearUnionContents() { + registered_cache_union = nullptr; +} + FileSys::RegisteredCache* GetSystemNANDContents() { LOG_TRACE(Service_FS, "Opening System NAND Contents"); @@ -391,6 +395,7 @@ void CreateFactories(FileSys::VfsFilesystem& vfs, bool overwrite) { bis_factory = nullptr; save_data_factory = nullptr; sdmc_factory = nullptr; + ClearUnionContents(); } auto nand_directory = vfs.OpenDirectory(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir), |
