mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 13:41:43 +00:00
fs.mitm: fix cache of non-current-process data storages (closes #1371)
This commit is contained in:
parent
26b6216fa0
commit
74e4e70053
1 changed files with 2 additions and 2 deletions
|
@ -380,7 +380,7 @@ namespace ams::mitm::fs {
|
||||||
|
|
||||||
/* Try to get a storage from the cache. */
|
/* Try to get a storage from the cache. */
|
||||||
{
|
{
|
||||||
std::shared_ptr<fs::IStorage> cached_storage = GetStorageCacheEntry(this->client_info.program_id);
|
std::shared_ptr<fs::IStorage> cached_storage = GetStorageCacheEntry(data_id);
|
||||||
if (cached_storage != nullptr) {
|
if (cached_storage != nullptr) {
|
||||||
out.SetValue(MakeSharedStorage(cached_storage), target_object_id);
|
out.SetValue(MakeSharedStorage(cached_storage), target_object_id);
|
||||||
return ResultSuccess();
|
return ResultSuccess();
|
||||||
|
@ -403,7 +403,7 @@ namespace ams::mitm::fs {
|
||||||
new_storage = std::move(layered_storage);
|
new_storage = std::move(layered_storage);
|
||||||
}
|
}
|
||||||
|
|
||||||
SetStorageCacheEntry(this->client_info.program_id, &new_storage);
|
SetStorageCacheEntry(data_id, &new_storage);
|
||||||
out.SetValue(MakeSharedStorage(new_storage), target_object_id);
|
out.SetValue(MakeSharedStorage(new_storage), target_object_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue